Skip to content

Commit ab83707

Browse files
committed
fix: changed loading content to deleting files along with changing the progress loader color
1 parent bb60cac commit ab83707

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

assets/js/Components/ReviewFilesPage.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,10 +1259,10 @@ const getSectionPostOptions = (newFile, sectionReferences) => {
12591259
{isDisabled && (<div className="flex-column h-100 flex-grow-1 justify-content-center">
12601260
<div className="flex-row justify-content-center mb-4">
12611261
<div className="flex-column justify-content-center">
1262-
<ProgressIcon className="icon-lg udoit-suggestion spinner" />
1262+
<ProgressIcon className="icon-lg udoit-progress spinner" />
12631263
</div>
12641264
<div className="flex-column justify-content-center ms-3">
1265-
<h2 className="mt-0 mb-0">{t('fix.label.loading_content')}</h2>
1265+
<h2 className="mt-0 mb-0">{t('fix.label.deleting_files')}</h2>
12661266
</div>
12671267
</div>
12681268
</div> )}
@@ -1281,7 +1281,7 @@ const getSectionPostOptions = (newFile, sectionReferences) => {
12811281
</div>
12821282
)}
12831283
{unusedFiles.length === 0 ? (
1284-
<div className="flex-column gap-2 p-3">
1284+
<div className="flex-column gap-2 p-3 text-center">
12851285
<h3 className="mt-0 mb-0 primary-dark">{t('report.label.no_results')}</h3>
12861286
<div className="subtext">{t('files.msg.no_unused_files')}</div>
12871287
</div>

translations/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@
250250
"fix.label.found_in": "Found in:",
251251
"fix.label.no_references": "Not found in any module",
252252
"fix.label.loading_content": "Loading Content",
253+
"fix.label.deleting_files": "Deleting Unused Files",
253254
"fix.label.file_name": "Name",
254255
"fix.label.file_type": "Type",
255256
"fix.label.file_size": "Size",

0 commit comments

Comments
 (0)