Merge branch 'v15/dev' into v16/dev
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
export * from './validation.context.js';
|
||||
export * from './validation.context-token.js';
|
||||
export * from './validation-messages.manager.js';
|
||||
export * from './server-model-validator.context-token.js';
|
||||
export * from './server-model-validator.context.js';
|
||||
|
||||
@@ -74,7 +74,12 @@ export class UmbInputImageCropperFieldElement extends UmbLitElement {
|
||||
|
||||
get source(): string {
|
||||
if (this.src) {
|
||||
return `${this._serverUrl}${this.src}`;
|
||||
// Test that URL is relative:
|
||||
if (this.src.startsWith('/')) {
|
||||
return `${this._serverUrl}${this.src}`;
|
||||
} else {
|
||||
return this.src;
|
||||
}
|
||||
}
|
||||
|
||||
return this.fileDataUrl ?? '';
|
||||
|
||||
@@ -10,7 +10,7 @@ const dataTypeData = umbDataTypeMockDb.read('dt-richTextEditor') as unknown as U
|
||||
export default {
|
||||
title: 'Property Editor UIs/Stylesheet Picker',
|
||||
component: 'umb-property-editor-ui-stylesheet-picker',
|
||||
id: 'umb-property-editor-ui-sstylesheet-picker',
|
||||
id: 'umb-property-editor-ui-stylesheet-picker',
|
||||
} as Meta;
|
||||
|
||||
export const AAAOverview = ({ value }: any) =>
|
||||
|
||||
Reference in New Issue
Block a user