Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DevUI: Liquibase and Datasource updates #32467

Merged
merged 1 commit into from
Apr 7, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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