Skip to content

Commit d58b7c8

Browse files
committed
fix obj details QL
1 parent 4cbf72e commit d58b7c8

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

angular/src/app/pages/api/manage/manage.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class ApiManageComponent implements OnInit {
173173
if (!ui_name) {
174174
ui_name = this.obj_name;
175175
}
176-
if (detail && detail != "new" || this.obj_id) {
176+
if (detail && detail != "new") {//} || this.obj_id) { <- this is causing issues with the quick links where the site_id is in the org url
177177
// set QUICK LINK
178178
url = "https://api." + host + "/api/v1/orgs/" + this.org_id + "/" + obj_name + "/" + this.obj_id;
179179
this.quick_links.push({ url: url, name: ui_name });

angular/src/manifest.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
"48": "assets/favicon-48x48.png",
1010
"128": "assets/favicon-128x128.png"
1111
},
12-
"browser_specific_settings": {
13-
"gecko": {
14-
"id": "{46f824d5-3c9d-468e-950f-cd2448e488d5}"
15-
}
16-
},
1712
"action": {
1813
"default_popup": "index.html?#/popup",
1914
"default_title": "Mist Extension"
@@ -35,9 +30,7 @@
3530
}
3631
],
3732
"background": {
38-
"scripts": [
39-
"assets/js/serviceWorker.js"
40-
]
33+
"service_worker": "assets/js/serviceWorker.js"
4134
},
4235
"content_security_policy": {
4336
"extension_pages": "script-src 'self'; object-src 'self'"

0 commit comments

Comments
 (0)