Don't call generateAlias on #onAliasChange()

Currently it's not possible to use characters like "_" and "-" in aliases due to this check - At least that is was @nul800sebastiaan told me 😇

Suggested fix for #20622
This commit is contained in:
Jan Skovgaard
2025-10-23 13:02:05 +02:00
committed by Sebastiaan Janssen
parent d9c201e3d1
commit e893682723

View File

@@ -108,7 +108,7 @@ export class UmbPropertyTypeWorkspaceViewSettingsElement extends UmbLitElement i
#onAliasChange() {
// TODO: Why can I not get the correct value via event? Is it an issue in uui library too?
const alias = generateAlias(this._aliasInput.value.toString());
const alias = this._aliasInput.value.toString();
this.updateValue({ alias });
}