Search in All Projects page doesn't do anything

お困りですか?

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

コミュニティに質問

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

このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

問題

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

環境

Jira Data Center on any version

診断

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.


Last modified on Mar 13, 2025

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

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