Skip to content

Commit

Permalink
Merge pull request #32467 from melloware/devui-liquibase
Browse files Browse the repository at this point in the history
DevUI: Liquibase and Datasource updates
  • Loading branch information
gsmet committed Apr 7, 2023
2 parents b77fdcd + 632ab1b commit a6dd924
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export class QwcDatasourcesReset extends LitElement {

static styles = css`
.button {
background-color: transparent;
cursor: pointer;
}
.clearIcon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@ export class QwcLiquibaseCard extends LitElement {
`;

static properties = {
description: {type: String}
extensionName: {attribute: true},
description: {attribute: true},
guide: {attribute: true},
namespace: {attribute: true},
};

constructor() {
super();
if(!this.extensionName){
this.extensionName = NAME;
}
}

connectedCallback() {
Expand All @@ -64,7 +70,8 @@ export class QwcLiquibaseCard extends LitElement {
_renderCardLinks(){
return html`${pages.map(page => html`
<qwc-extension-link slot="link"
extensionName="${NAME}"
namespace="${this.namespace}"
extensionName="${this.extensionName}"
iconName="${page.icon}"
displayName="${page.title}"
staticLabel="${page.staticLabel}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export class QwcLiquibaseDatasources extends LitElement {

static styles = css`
.button {
background-color: transparent;
cursor: pointer;
}
.clearIcon {
Expand Down

0 comments on commit a6dd924

Please sign in to comment.