Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
PFM-5009
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldevgarg committed Nov 24, 2023
1 parent 9d4da61 commit 155d11c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ class Common {
String get INACTIVATED_BY_NAME => 'INACTIVATED_BY_NAME';
String get INACTIVATED_DATE => 'INACTIVATED_DATE';
String get INACTIVATED_BY_UUID => 'INACTIVATED_BY_UUID';
String get UPLOADING_FILE => 'UPLOADING_FILE';
}

class Password {
Expand Down
2 changes: 1 addition & 1 deletion frontend/mgramseva/lib/widgets/file_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class FilePickerDemoState extends State<FilePickerDemo> {
),
Row(
children: [
fileUploading==FileUploadStatus.STARTED?Text("Uploading File",style: TextStyle(
fileUploading==FileUploadStatus.STARTED?Text("${ApplicationLocalizations.of(context).translate(i18.common.UPLOADING_FILE)}",style: TextStyle(
color: Colors.black
),):SizedBox(),
fileUploading==FileUploadStatus.STARTED?Transform.scale(
Expand Down

0 comments on commit 155d11c

Please sign in to comment.