summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/renderer')
-rw-r--r--gui/src/renderer/components/cell/Input.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/renderer/components/cell/Input.tsx b/gui/src/renderer/components/cell/Input.tsx
index c57d552866..81e5f76e0f 100644
--- a/gui/src/renderer/components/cell/Input.tsx
+++ b/gui/src/renderer/components/cell/Input.tsx
@@ -328,10 +328,10 @@ export function RowInput(props: IRowInputProps) {
</StyledInputWrapper>
<StyledSubmitButton onClick={submit}>
<ImageView
- source="icon-tick"
+ source="icon-check"
height={22}
- tintColor={colors.green}
- tintHoverColor={colors.green90}
+ tintColor={value === '' ? colors.blue60 : colors.blue}
+ tintHoverColor={value === '' ? colors.blue60 : colors.blue80}
/>
</StyledSubmitButton>
</StyledCellInputRowContainer>