-
Notifications
You must be signed in to change notification settings - Fork 0
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: [AXIMST-488-489] Textbooks: file size and upload connection alert #174
fix: [AXIMST-488-489] Textbooks: file size and upload connection alert #174
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## ts-develop #174 +/- ##
=============================================
Coverage ? 89.22%
=============================================
Files ? 671
Lines ? 11265
Branches ? 2378
=============================================
Hits ? 10051
Misses ? 1175
Partials ? 39 ☔ View full report in Codecov by Sentry. |
src/textbooks/Textbooks.scss
Outdated
@import "./empty-placeholder/EmptyPlaceholder"; | ||
@import "./textbook-card/TextbookCard"; | ||
@import "./textbook-form/TextbookForm"; | ||
|
||
.alert-toast { | ||
z-index: $popover !important; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[important]: Try to use Paragon SCSS variable
z-index: $popover !important; | |
z-index: $zindex-tooltip !important; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@PKulkoRaccoonGang We have the same variable for certificates page, should we change there also?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i remember that you suggested exactly this naming so im curious
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
import { useModel } from '../../generic/model-store'; | ||
import textbookFormValidationSchema from './validations'; | ||
import messages from './messages'; | ||
import { UPLOAD_FILE_MAX_SIZE } from '../../constants'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { useModel } from '../../generic/model-store'; | |
import textbookFormValidationSchema from './validations'; | |
import messages from './messages'; | |
import { UPLOAD_FILE_MAX_SIZE } from '../../constants'; | |
import { useModel } from '../../generic/model-store'; | |
import { UPLOAD_FILE_MAX_SIZE } from '../../constants'; | |
import textbookFormValidationSchema from './validations'; | |
import messages from './messages'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, resolve comments and ready to merge
#174) * fix: [AXIMST-488-489] file size and upload connection alert * fix: [AXIMST-488-489] refactor after review
#174) * fix: [AXIMST-488-489] file size and upload connection alert * fix: [AXIMST-488-489] refactor after review
#174) * fix: [AXIMST-488-489] file size and upload connection alert * fix: [AXIMST-488-489] refactor after review
#174) * fix: [AXIMST-488-489] file size and upload connection alert * fix: [AXIMST-488-489] refactor after review
#174) * fix: [AXIMST-488-489] file size and upload connection alert * fix: [AXIMST-488-489] refactor after review
AXIMST-488
AXIMST-489