Skip to content

Commit

Permalink
fix(nc-gui): review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshmane7218 committed May 10, 2024
1 parent 1d352c5 commit 20700d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ watch(commentsWrapperEl, () => {
{{ log.display_name?.trim() || log.user || 'Shared source' }}
</template>
<span
class="text-ellipsis overflow-hidden text-gray-700"
class="text-ellipsis overflow-hidden text-gray-700 text-small"
:style="{
wordBreak: 'keep-all',
whiteSpace: 'nowrap',
Expand Down Expand Up @@ -262,7 +262,7 @@ watch(commentsWrapperEl, () => {
<a-textarea
:ref="focusCommentInput"
v-model:value="comment"
class="expanded-form-comment-input !py-1 !px-3 !m-0 w-full !border-1 !border-gray-200 !rounded-lg !bg-transparent !text-gray-800 !text-small !leading-18px !max-h-[70px] nc-scrollbar-thin"
class="expanded-form-comment-input !py-1 !px-3 !m-0 w-full !border-1 !border-gray-200 !rounded-lg !bg-transparent !text-gray-800 !text-small !leading-18px !max-h-[694px] nc-scrollbar-thin"
auto-size
hide-details
:disabled="isSaving"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ export default {
<div
v-if="showRightSections"
:class="{ active: commentsDrawer && isUIAllowed('commentList') }"
class="nc-comments-drawer border-l-1 relative border-gray-200 bg-gray-50 w-1/3 max-w-[388px] min-w-0 overflow-hidden h-full xs:hidden"
class="nc-comments-drawer border-l-1 relative border-gray-200 bg-gray-50 w-1/3 max-w-[340px] min-w-0 overflow-hidden h-full xs:hidden"
>
<SmartsheetExpandedFormComments :loading="isLoading" />
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/nc-gui/components/smartsheet/header/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ const filterOrGroupByThisField = (event: SmartsheetStoreEvents) => {
<a-divider v-if="!column?.pv" class="!my-0" />
<NcMenuItem v-if="!column?.pv" @click="hideOrShowField">
<div v-e="['a:field:hide']" class="nc-column-insert-before nc-header-menu-item">
<component :is="isHiddenCol ? iconMap.eyeSlash : iconMap.eye" class="text-gray-700 !w-3.75 !h-3.75" />
<component :is="isHiddenCol ? iconMap.eye : iconMap.eyeSlash" class="text-gray-700 !w-3.75 !h-3.75" />
<!-- Hide Field -->
{{ isHiddenCol ? $t('general.showField') : $t('general.hideField') }}
</div>
Expand Down

0 comments on commit 20700d8

Please sign in to comment.