Skip to content

Commit

Permalink
Misc UX improvements (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimak1 authored May 24, 2024
1 parent 643ed71 commit 4a3a240
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions ppr-ui/src/components/common/ButtonFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ export default defineComponent({
if (draft.error) {
// Emit error message.
emit('error', draft.error)
localState.submitting = false
return false
} else {
await setUnsavedChanges(false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<v-card
id="home-location-summary"
flat
class="mt-10"
class="mt-10 home-location-review"
>
<header
v-if="!hideDefaultHeader"
Expand Down Expand Up @@ -808,7 +808,7 @@ export default defineComponent({

<style lang="scss" scoped>
@import '@/assets/styles/theme.scss';
#home-location-summary {
.home-location-review {
h3 {
line-height: unset;
}
Expand Down
4 changes: 2 additions & 2 deletions ppr-ui/src/composables/mhrInformation/useMhrInformation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ export const useMhrInformation = () => {
setMhrTransferDocumentId(draft.documentId)

// Set draft owner groups
setShowGroups(draft.addOwnerGroups.length > 1 || draft.deleteOwnerGroups.length > 1)
setMhrTransferHomeOwnerGroups([...draft.addOwnerGroups])
setShowGroups(draft.addOwnerGroups?.length > 1 || draft.deleteOwnerGroups?.length > 1)
setMhrTransferHomeOwnerGroups([...draft?.addOwnerGroups])

// Set submitting party
setMhrAccountSubmittingParty(draft.submittingParty)
Expand Down

0 comments on commit 4a3a240

Please sign in to comment.