Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add status message for no Applications#1139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
himaniraghav3 wants to merge2 commits intodev
base:dev
Choose a base branch
Loading
fromPM-1269
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -90,14 +90,18 @@ const CopilotApplications: FC<{
return (
<div>
{
tableData.length > 0&& (
tableData.length > 0? (
<Table
columns={tableColumns}
data={tableData}
disableSorting
removeDefaultSort
preventDefault
/>
) : (
<div className={styles.noApplications}>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Consider using a more descriptive class name forstyles.noApplications to clearly indicate its purpose, such asstyles.noApplicationsMessage.

<span>No Applications yet</span>
</div>
)
}
</div>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -12,3 +12,11 @@
color: $teal-100;
}
}

.noApplications {
margin-top: $sp-6;
display: flex;
justify-content: center;
align-items: center;
font-size: large;
}

[8]ページ先頭

©2009-2025 Movatter.jp