-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed ui bugs 1. pagination 2. layout 3. unwanted class and element remove 4. responsive * fixed sorting look like chip * changes sort of task into a button
- Loading branch information
1 parent
5b57f8c
commit b8b5371
Showing
15 changed files
with
83 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
27 changes: 27 additions & 0 deletions
27
forms-flow-web/src/components/ServiceFlow/NoTaskSelected/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from "react"; | ||
import NoFilterSelectedImage from "./undraw_to_do_re_jaef.svg"; | ||
import { Translation } from "react-i18next"; | ||
|
||
function NoTaskSelectedMessage() { | ||
return ( | ||
<div className="d-flex flex-column h-100 align-items-center justify-content-center"> | ||
<img | ||
src={NoFilterSelectedImage} | ||
style={{ width: "100%", height: "150PX" }} | ||
/> | ||
<h3 className="text-center"> | ||
<Translation>{(t) => t("Select a task from the List.")}</Translation> | ||
</h3> | ||
<p className="text-center"> | ||
<Translation> | ||
{(t) => | ||
t( | ||
"Choose a task from the list; your selection directs your current activity." | ||
) | ||
} | ||
</Translation> | ||
</p> | ||
</div> | ||
); | ||
} | ||
export default NoTaskSelectedMessage; |
1 change: 1 addition & 0 deletions
1
forms-flow-web/src/components/ServiceFlow/NoTaskSelected/undraw_to_do_re_jaef.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 0 additions & 27 deletions
27
forms-flow-web/src/components/ServiceFlow/list/sort/NoFilterSelected.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.