fix(core): update

This commit is contained in:
Philipp Kunz 2023-04-05 17:00:44 +02:00
parent f26f0d0450
commit 9960bf7018
2 changed files with 2 additions and 8 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@designestate/dees-catalog', name: '@designestate/dees-catalog',
version: '1.0.157', version: '1.0.158',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@ -11,12 +11,6 @@ import {
import * as tsclass from '@tsclass/tsclass'; import * as tsclass from '@tsclass/tsclass';
import hlight from 'highlight.js';
import * as smartstring from '@pushrocks/smartstring';
import * as domtools from '@designestate/dees-domtools';
declare global { declare global {
interface HTMLElementTagNameMap { interface HTMLElementTagNameMap {
'dees-dataview-statusobject': DeesDataviewStatusobject; 'dees-dataview-statusobject': DeesDataviewStatusobject;
@ -149,7 +143,7 @@ export class DeesDataviewStatusobject extends DeesElement {
<h1>${this.statusObject?.name || 'no status object assigned'}</h1> <h1>${this.statusObject?.name || 'no status object assigned'}</h1>
<div class="copyMain">Copy as JSON</div> <div class="copyMain">Copy as JSON</div>
</div> </div>
${this.statusObject.details.map((detailArg) => { ${this.statusObject?.details?.map((detailArg) => {
return html` return html`
<div class="detail"> <div class="detail">
<div class="statusdot ${detailArg.status}"></div> <div class="statusdot ${detailArg.status}"></div>