如何摆脱文物中的灰色屏幕?

发布于 2025-01-21 19:00:12 字数 620 浏览 3 评论 0原文

除非您为您的帐户付费很多,否则似乎无法提交错误报告,因此我将在此处发布,希望能获得开发者。

客户经理曾为管理员访问,我才刚刚开始戳戳。我解散了帮助屏幕或某种形式的向导……屏幕保持灰色。我可以与搜索栏和左侧的选项进行互动,但是屏幕的主要白色部分仍然是灰色且无法访问的。

我尝试过的事情:

  • 刷新页面
  • 硬缓存重置
  • 启动每个向导和帮助系统,然后将它们删除
  • ,然后将它们登录,并
  • 清除所有cookie和本地存储空间,
  • 使用其他浏览器

唯一有效的方法就是进入和临时使用Chrome的调试工具删除主Div.App-Layout-Content上的“ Active-Wizard”类,这使我可以在会话期间工作,但是重新装载页面使我立即回到了灰色的模式。

我猜这种情况很少见,因为我无法在网上找到任何提及,但这很烦人。

There seems to be no way to submit a bug report unless you pay a lot for your account, so I'll post here in hopes of getting dev eyeballs.

I was just starting to poke around, having been given admin access by the account manager. I dismissed a help screen or wizard of some kind... and the screen stayed grayed out. I can interact with the search bar and the options on the left, but the main, white part of the screen remains grayed out and inaccessible.

Things I've tried:

  • Refreshing the page
  • hard cache reset
  • Launching every wizard and help system I can find then dismissing them
  • Logging out and in
  • Clearing all cookies and local storage
  • Using a different browser

The only thing that has worked is to go in and temporary remove the '.active-wizard' class on the main div.app-layout-content using Chrome's debugging tools, which lets me do work during the session, but reloading the page brings me right back to the grayed-out mode.

I'm guessing this condition is rare since I cant' find any mention online, but it's very annoying.

My screen, all grayed out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

み格子的夏天 2025-01-28 19:00:12

来自Jfrog R& d的Yonatan在这里,

该错误是由于边缘案例引起的,其中一个项目登机标志未能提交。

此错误将在下一个次要版本中修复。

您可以通过执行以下操作来快速赢得此信息:
在您的浏览器控制台粘贴下面的命令并刷新页面。

*不会影响重要的数据,因此不用担心

window.store.dispatch('onboardingProcess/RESET_USER_ONBOARDING')

Yonatan from JFrog R&D here

The bug is caused due to an edge case, where one of the projects onboarding flags failed to submit.

This bug will be fixed on next minor release.

You can quickly win this by doing the following:
On your browser console paste the command below and refresh the page.

*no important data will be affected, so no worries

window.store.dispatch('onboardingProcess/RESET_USER_ONBOARDING')
灵芸 2025-01-28 19:00:12

此处的同一问题 7.38.10
使用window.store.dispatch('onboardingProcess/reset_user_onboarding')
我回到不确定的作为返回值

我删除了相应的条目 content ,并向另一个用户提供了管理权。
新用户没有问题。
它至少适用于管理员。

.app-layout-wrapper .app-layout-content[data-v-2db44934]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    transition: opacity .2s ease;
    opacity: 0;
    z-index: -1;
}

Same issue here with version 7.38.10.
with window.store.dispatch('onboardingProcess/RESET_USER_ONBOARDING')
I get back an undefined as return value.

I removed the corresponding entry content and gave admin rights to another user.
The new user does not have the issue.
It works for the admin at least temporarily.

 css

.app-layout-wrapper .app-layout-content[data-v-2db44934]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    transition: opacity .2s ease;
    opacity: 0;
    z-index: -1;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文