changes to make build work on the server

This commit is contained in:
Jacob Overgaard
2024-01-15 11:43:44 +01:00
parent 18e3c8d2ea
commit c4e7c44427
2 changed files with 3 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ export class UmbInputSliderElement extends FormControlMixin(UmbLitElement) {
#onChange(e: UUISliderEvent) {
e.stopPropagation();
super.value = e.target.value;
this.value = e.target.value;
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
}

View File

@@ -1,7 +1,5 @@
import packageJson from '../../../../package.json';
export const umbMeta = {
name: 'Bellissima',
clientName: packageJson.name,
clientVersion: packageJson.version,
clientName: 'Umbraco.CMS.Backoffice',
clientVersion: '#CLIENTVERSION#', // will be replaced by the build script
};