loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix fullscreen for action (#25200)

An error occurs when clicking on `show full screen` on action page.

<img width="1440" alt="Screen Shot 2023-06-12 at 13 06 52"
src="https://github.com/go-gitea/gitea/assets/17645053/1d4ded3c-fb77-4dd8-9201-24d0696f96eb">

class name has changed in #25134, so the selector is not working.
Enhance the selectors to fix this.

authored by

HesterG and committed by
GitHub
33180018 06557a75

+1 -1
+1 -1
web_src/js/components/RepoActionView.vue
··· 415 415 const fullScreenEl = document.querySelector('.action-view-right'); 416 416 const outerEl = document.querySelector('.full.height'); 417 417 const actionBodyEl = document.querySelector('.action-view-body'); 418 - const headerEl = document.querySelector('.ui.main.menu'); 418 + const headerEl = document.querySelector('#navbar'); 419 419 const contentEl = document.querySelector('.page-content.repository'); 420 420 const footerEl = document.querySelector('.page-footer'); 421 421 toggleElem(headerEl, !this.isFullScreen);