Search in All Projects page doesn't do anything

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

 

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

問題

When you navigate to the All Projects page and attempt to search the list of projects, nothing happens.

診断

Check the JavaScript console of your browser. If you see an error similar to item.lead = null then this is the same issue.

原因

One of your projects has an invalid Project Lead assigned to it. This may be because a user was improperly set at one point, or a user was removed from the system.

ソリューション

Run this query:

select p.pkey
from project p
join app_user au on (p.lead = au.user_key)
left join cwd_user cu on (au.lower_user_name = cu.lower_user_name)
where cu.id is null;

Any project which is affected must have their project lead reset. Just go into the Administration portion of the given project, then go to Roles, and update the value from there.

最終更新日 2016 年 5 月 30 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.