update remaining icons

This commit is contained in:
Jacob Overgaard
2023-11-08 13:31:52 +01:00
parent d7be81f223
commit d11b78efa3
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ export class UmbMediaTypeWorkspaceEditorElement extends UmbLitElement {
?disabled=${this._aliasLocked}>
<!-- TODO: validation for bad characters -->
<div @click=${this.#onToggleAliasLock} @keydown=${() => ''} id="alias-lock" slot="prepend">
<uui-icon name=${this._aliasLocked ? 'umb:lock' : 'umb:unlocked'}></uui-icon>
<uui-icon name=${this._aliasLocked ? 'icon-lock' : 'icon-unlocked'}></uui-icon>
</div>
</uui-input>
</uui-input>

View File

@@ -10,7 +10,7 @@ interface UmbIconDescriptor {
* @export
* @class UmbIconRegistry
* @extends {UUIIconRegistry}
* @description - Icon Registry. Provides icons from the icon manifest. Icons are loaded on demand. All icons are prefixed with 'umb:'
* @description - Icon Registry. Provides icons from the icon manifest. Icons are loaded on demand. All icons are prefixed with 'icon-'
*/
export class UmbIconRegistry extends UUIIconRegistry {
/**