This commit is contained in:
Lone Iversen
2022-11-28 09:20:32 +01:00
parent ea8010eee0
commit ca95c20d80
3 changed files with 6 additions and 3 deletions

View File

@@ -141,10 +141,10 @@ export class UmbDashboardModelsBuilderElement extends UmbContextConsumerMixin(Li
</ul>
</div>
<p class="models-actions">
${this._modelsBuilder?.outOfDateModels === true
${this._modelsBuilder?.outOfDateModels
? html`<span class="out-of-date">Models are <strong>out-of-date</strong></span>`
: nothing}
${this._modelsBuilder?.canGenerate === true
${this._modelsBuilder?.canGenerate
? html` <uui-button
.state="${this._buttonStateBuild}"
look="primary"

View File

@@ -36,7 +36,9 @@ export class UUICodeBlock extends LitElement {
render() {
return html`<div id="container">
<uui-scroll-container>
<pre><slot></slot></pre>
<pre>
<slot></slot>
</pre>
</uui-scroll-container>
</div> `;
}

View File

@@ -1,2 +1,3 @@
export * from './baseUrl';
export * from './umbraco-path';
export * from './code-block';