diff --git a/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx b/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx index ee363fb42..b660445e0 100644 --- a/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx +++ b/src/components/TaskConfirmationModal/TaskConfirmationModal.jsx @@ -221,8 +221,8 @@ export class TaskConfirmationModal extends Component { {applyingTagChanges && -
{/* Added border and padding */} -

{/* Increased font size, weight, and added background */} +

+

@@ -243,8 +243,8 @@ export class TaskConfirmationModal extends Component {

-
    {/* Added border and shadow */} -
  • Tag Name
  • {/* Increased font size */} +
      +
    • Tag Name
    • {_get(this.props, 'tagDiffs[0]') && Object.keys(_get(this.props, 'tagDiffs[0]')).map(tagName => { const tagChange = _get(this.props, 'tagDiffs[0]')[tagName]; if (['changed', 'removed', 'added'].includes(tagChange.status)) { @@ -254,7 +254,7 @@ export class TaskConfirmationModal extends Component { 'mr-text-lavender-rose': tagChange.status === 'removed', 'mr-text-picton-blue': tagChange.status === 'added', })}> - {tagName} {/* Increased font size */} + {tagName} ); }