Skip to content

Commit

Permalink
fix(nc-gui): navigation btn style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshmane7218 committed May 11, 2024
1 parent 36a1434 commit c264bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nc-gui/components/smartsheet/expanded-form/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ export default {
<template #title> {{ renderAltOrOptlKey() }} + ← </template>
<NcButton
:disabled="isFirstRow || isLoading"
class="nc-prev-arrow !w-7 !h-7 !text-gray-500 disabled:!text-gray-300"
class="nc-prev-arrow !w-7 !h-7 !text-gray-500 !disabled:text-gray-300"
type="text"
size="xsmall"
@click="$emit('prev')"
Expand All @@ -580,7 +580,7 @@ export default {
<template #title> {{ renderAltOrOptlKey() }} + → </template>
<NcButton
:disabled="islastRow || isLoading"
class="nc-next-arrow !w-7 !h-7 !text-gray-500 disabled:!text-gray-300"
class="nc-next-arrow !w-7 !h-7 !text-gray-500 !disabled:text-gray-300"
type="text"
size="xsmall"
@click="onNext"
Expand Down

1 comment on commit c264bb3

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR changes have been deployed. Please run the following command to verify:

docker run -d -p 8888:8080 nocodb/nocodb-timely:0.205.0-pr-8452-20240511-0511

Please sign in to comment.