-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: update transaction description field #1404
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -237,7 +237,7 @@ const handleSign = async () => { | |
} | ||
|
||
const personalPassword = getPassword(handleSign, { | ||
subHeading: 'Enter your application password to decrypt your private key', | ||
subHeading: 'Enter your application password to access your private key', | ||
}); | ||
if (passwordModalOpened(personalPassword)) return; | ||
|
||
|
@@ -312,7 +312,7 @@ const handleApprove = async (approved: boolean, showModal?: boolean) => { | |
} | ||
|
||
const personalPassword = getPassword(callback, { | ||
subHeading: 'Enter your application password to decrypt your private key', | ||
subHeading: 'Enter your application password to access your private key', | ||
}); | ||
if (passwordModalOpened(personalPassword)) return; | ||
|
||
|
@@ -528,6 +528,7 @@ const sectionHeadingClass = 'd-flex justify-content-between align-items-center'; | |
const detailItemLabelClass = 'text-micro text-semi-bold text-dark-blue'; | ||
const detailItemValueClass = 'text-small mt-1'; | ||
const commonColClass = 'col-6 col-lg-5 col-xl-4 col-xxl-3 overflow-hidden py-3'; | ||
const descriptionColClass = 'col-12 col-lg-12 col-xl-12 col-xxl-12\''; | ||
const reject = 'Reject'; | ||
const approve = 'Approve'; | ||
const sign = 'Sign'; | ||
|
@@ -618,7 +619,7 @@ const cancel = 'Cancel'; | |
<div class="fill-remaining mt-5 pe-4"> | ||
<div class="row flex-wrap"> | ||
<!-- Description --> | ||
<div :class="commonColClass"> | ||
<div :class="descriptionColClass"> | ||
<div | ||
v-if=" | ||
( | ||
|
@@ -629,7 +630,9 @@ const cancel = 'Cancel'; | |
" | ||
> | ||
<h4 :class="detailItemLabelClass">Description</h4> | ||
<p :class="detailItemValueClass" data-testid="p-description-field"> | ||
<p :class="detailItemValueClass" data-testid="p-description-field" | ||
style="white-space: normal; word-break: break-word; overflow-wrap: break-word;" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inline styles are bad practice, consider adding the |
||
> | ||
{{ orgTransaction?.description || localTransaction?.description }} | ||
</p> | ||
</div> | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
There is no need for multiple col-12's
Bootstrap uses the min-width media queries so that you can leave only
col-12
and it will apply to any larger screensThere 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.
Then since it is only a single class, you don't need a variable for that