diff --git a/web/src/assets/locales/en.json b/web/src/assets/locales/en.json index 0ffa5312a..bca670f6a 100644 --- a/web/src/assets/locales/en.json +++ b/web/src/assets/locales/en.json @@ -569,5 +569,7 @@ "use_this_redirect_uri_to_create": "Use this redirect URI to create or update the OAuth application. Go to {0} and setup the OAuth application.", "developer_settings": "Developer settings", "public_url_for_oauth_if": "Public URL for OAuth if different from URL ({0})", - "forge_saved": "Forge saved" + "forge_saved": "Forge saved", + "fullscreen": "Fullscreen", + "exit_fullscreen": "Exit fullscreen" } diff --git a/web/src/components/atomic/Icon.vue b/web/src/components/atomic/Icon.vue index c8c5e2a99..932dc5dde 100644 --- a/web/src/components/atomic/Icon.vue +++ b/web/src/components/atomic/Icon.vue @@ -67,6 +67,8 @@ + + @@ -132,6 +134,8 @@ import { mdiFolderOutline, mdiFormatListBulleted, mdiFormatListGroup, + mdiFullscreen, + mdiFullscreenExit, mdiGestureTap, mdiGit, mdiGithub, @@ -237,6 +241,8 @@ export type IconNames = | 'cron' | 'toolbox' | 'forge' + | 'fullscreen' + | 'exit-fullscreen' | 'folder' | 'folder-open' | 'file'; diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue index fd8ec3909..fa015316c 100644 --- a/web/src/components/repo/pipeline/PipelineLog.vue +++ b/web/src/components/repo/pipeline/PipelineLog.vue @@ -1,5 +1,11 @@