diff --git a/resources/js/components/MagicBar.vue b/resources/js/components/MagicBar.vue index 4fc1fc5df..5f11d8afd 100644 --- a/resources/js/components/MagicBar.vue +++ b/resources/js/components/MagicBar.vue @@ -429,6 +429,13 @@ const magicActions = [{ tags: 'api,tokens,rest', icon: 'goto', sequence: ['main', 'redirect'] +}, +{ + id: 26, + name: 'Goto: Team Shared Variables', + tags: 'team,shared,variables', + icon: 'goto', + sequence: ['main', 'redirect'] } ] const initialState = { @@ -665,6 +672,9 @@ async function redirect() { case 25: targetUrl.pathname = `/security/api-tokens` break; + case 26: + targetUrl.pathname = `/team/shared-variables` + break; } window.location.href = targetUrl; } diff --git a/resources/views/livewire/project/edit.blade.php b/resources/views/livewire/project/edit.blade.php index 71b7a0688..0328b4ab5 100644 --- a/resources/views/livewire/project/edit.blade.php +++ b/resources/views/livewire/project/edit.blade.php @@ -23,7 +23,9 @@ Add -