outposts: fix syntax
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
c8dc299ae3
commit
0a6efab7cb
|
@ -168,7 +168,7 @@ class DockerController(BaseController):
|
|||
|
||||
def down(self):
|
||||
if self.outpost.managed != "":
|
||||
return None
|
||||
return
|
||||
try:
|
||||
container, _ = self._get_container()
|
||||
if container.status == "running":
|
||||
|
|
|
@ -73,7 +73,8 @@ export class LibraryApplication extends LitElement {
|
|||
return html` <div class="pf-c-card pf-m-hoverable pf-m-compact ak-lib-card">
|
||||
<div class="pf-c-card__header">
|
||||
${this.application.metaIcon
|
||||
? html`<a href="${ifDefined(this.application.launchUrl ?? "")}"><img
|
||||
? html`<a href="${ifDefined(this.application.launchUrl ?? "")}"
|
||||
><img
|
||||
class="app-icon pf-c-avatar"
|
||||
src="${ifDefined(this.application.metaIcon)}"
|
||||
alt="Application Icon"
|
||||
|
@ -83,7 +84,10 @@ export class LibraryApplication extends LitElement {
|
|||
me().then((u) => {
|
||||
if (!u.user.isSuperuser) return html``;
|
||||
return html`
|
||||
<a class="pf-c-button pf-m-control pf-m-small" href="#/core/applications/${this.application?.slug}">
|
||||
<a
|
||||
class="pf-c-button pf-m-control pf-m-small"
|
||||
href="#/core/applications/${this.application?.slug}"
|
||||
>
|
||||
<i class="fas fa-pencil-alt"></i>
|
||||
</a>
|
||||
`;
|
||||
|
@ -91,7 +95,11 @@ export class LibraryApplication extends LitElement {
|
|||
)}
|
||||
</div>
|
||||
<div class="pf-c-card__title">
|
||||
<p id="card-1-check-label"><a href="${ifDefined(this.application.launchUrl ?? "")}">${this.application.name}</a></p>
|
||||
<p id="card-1-check-label">
|
||||
<a href="${ifDefined(this.application.launchUrl ?? "")}"
|
||||
>${this.application.name}</a
|
||||
>
|
||||
</p>
|
||||
<div class="pf-c-content">
|
||||
<small>${this.application.metaPublisher}</small>
|
||||
</div>
|
||||
|
|
|
@ -27,8 +27,5 @@
|
|||
"strict": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"exclude": [
|
||||
"api/src/",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue