| Index: appengine/config_service/ui/src/config-ui/config-set.html
|
| diff --git a/appengine/config_service/ui/src/config-ui/config-set.html b/appengine/config_service/ui/src/config-ui/config-set.html
|
| index f442d03437c8394bfa2e31a3158507d341092cd5..1cf8ce5a2ad66b764caf2f9bde0ed81093bdf47e 100644
|
| --- a/appengine/config_service/ui/src/config-ui/config-set.html
|
| +++ b/appengine/config_service/ui/src/config-ui/config-set.html
|
| @@ -113,7 +113,7 @@
|
| </template>
|
| </div>
|
| <div class="category">
|
| - <p>[[_formatCategory(category)]]</p>
|
| + <p>[[_formatCategory(category, route.path)]]</p>
|
| <template is="dom-if" if="[[_not(isLoading)]]">
|
| <template is="dom-if" if="[[lastImportAttempt]]">
|
| <template is="dom-if" if="[[_not(lastImportAttempt.success)]]">
|
| @@ -240,7 +240,8 @@
|
| return list.length === 0;
|
| },
|
|
|
| - _formatCategory: function(category) {
|
| + _formatCategory: function(category, name) {
|
| + if (name.includes("/refs")) return "Ref";
|
| if (category === "projects") return "Project";
|
| if (category === "services") return "Service";
|
| },
|
|
|