Skip to content

Commit

Permalink
fix: capitalise "GL" in sage intacct import settings (#863)
Browse files Browse the repository at this point in the history
* fix: capitalise "GL" in sage intacct import settings

* fix: add back title case and capitalize only "GL"

(cherry picked from commit f1b4387)
  • Loading branch information
JustARatherRidiculouslyLongUsername committed Jul 10, 2024
1 parent e3bf475 commit 8e6440c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h5 class="!tw-text-text-muted tw-text-14-px tw-pt-8-px !tw-font-400 !tw-leading
</div>
<div class="tw-flex tw-pt-18-px">
<div class="tw-pl-48-px">
<input type="text" class="tw-text-14-px tw-text-slightly-normal-text-color !tw-font-500 tw-w-300-px !tw-px-14-px !tw-py-10-px tw-border tw-border-solid !tw-border-separator tw-rounded-4-px" value="{{intacctCategoryDestination | snakeCaseToSpaceCase | titlecase}}" disabled>
<input type="text" class="tw-text-14-px tw-text-slightly-normal-text-color !tw-font-500 tw-w-300-px !tw-px-14-px !tw-py-10-px tw-border tw-border-solid !tw-border-separator tw-rounded-4-px" value="{{(intacctCategoryDestination | snakeCaseToSpaceCase | titlecase).replace('Gl ', 'GL ')}}" disabled>
</div>
<div class="tw-pt-16-px ">
<app-svg-icon [isTextColorAllowed]="true" [svgSource]="'arrow-line'" [height]="'30px'" [width]="'100px'" [styleClasses]="'!tw-ml-0 tw-text-box-color'"></app-svg-icon>
Expand Down

0 comments on commit 8e6440c

Please sign in to comment.