From 7a70b20395e149deab8ce76bcd6d218b5593081d Mon Sep 17 00:00:00 2001 From: rexy712 <2442544+rexy712@users.noreply.github.com> Date: Fri, 8 Nov 2024 10:00:58 -0800 Subject: [PATCH] feat(AssetManager): Allow editing asset names without a popup --- CHANGELOG.md | 2 + client/src/assetManager/AssetContext.vue | 19 +++--- client/src/dashboard/Assets.vue | 79 +++++++++++++++++++++--- 3 files changed, 82 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d596a32a0..32b421539 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,8 @@ tech changes will usually be stripped from release notes for the public - [tech] Select tool: - Delayed syncing of selection state to the global state from mouse down to mouse move/up - This fixes some of the entries in the Fixed section +- AssetManager: + - Changed UI of renaming assets, allowing inline editing rather than opening a popup ### Removed diff --git a/client/src/assetManager/AssetContext.vue b/client/src/assetManager/AssetContext.vue index 6dbc97678..c026869d3 100644 --- a/client/src/assetManager/AssetContext.vue +++ b/client/src/assetManager/AssetContext.vue @@ -1,17 +1,21 @@