Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,14 @@ function PrimaryNav({
href: "/snaps",
icon: "pods",
},
],
},
{
items: [
{
label: "My validation sets",
href: "/validation-sets",
icon: "pods",
icon: "topic",
"aria-current": "page",
},
],
Expand Down
2 changes: 1 addition & 1 deletion templates/_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<a href="/account/snaps" class="p-navigation__dropdown-item">My published snaps</a>
</li>
<li>
<a href="/validation-sets" class="p-navigation__dropdown-item">Validation sets</a>
<a href="/validation-sets" class="p-navigation__dropdown-item">My validation sets</a>
</li>
<li class="js-nav-account--stores u-hide">
<a href="/admin" class="p-navigation__dropdown-item">My stores</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
{% block content %}
<div id="root">
</div>
<script src="{{ static_url('js/dist/validation-sets.js') }}"></script>
<script src="{{ static_url('js/dist/publisher-pages.js') }}"></script>
{% endblock %}
2 changes: 1 addition & 1 deletion webapp/store/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_validation_set(validation_set_id):
@store.route("/validation-sets/<path:path>")
@login_required
def validation_sets(path):
return flask.render_template("store/validation-sets.html")
return flask.render_template("store/publisher.html")

@store.route("/discover")
def discover():
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ module.exports = {
"publisher-settings": "./static/js/publisher/settings/index.tsx",
"about-listing": "./static/js/public/about/listing.ts",
store: "./static/js/store/index.tsx",
"validation-sets": "./static/js/validation-sets/index.tsx",
"publisher-pages": "./static/js/publisher-pages/index.tsx",
};