Browse Source

Merge pull request #3629 from nocodb/fix/3627-shared-form-view-with-password

fix(gui): shared form view with password
pull/3630/head
navi 2 years ago committed by GitHub
parent
commit
90430cf17e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/pages/[projectType]/form/[viewId]/index.vue

2
packages/nc-gui/pages/[projectType]/form/[viewId]/index.vue

@ -36,6 +36,7 @@ function isRequired(_columnObj: Record<string, any>, required = false) {
<div
class="bg-white relative flex flex-col justify-center gap-2 w-full lg:max-w-1/2 max-w-500px m-auto p-8 md:(rounded-lg border-1 border-gray-200 shadow-xl)"
>
<template v-if="sharedFormView">
<general-noco-icon class="color-transition hover:(ring ring-accent)" :class="[isLoading ? 'animated-bg-gradient' : '']" />
<h1 class="prose-2xl font-bold self-center my-4">{{ sharedFormView.heading }}</h1>
@ -128,6 +129,7 @@ function isRequired(_columnObj: Record<string, any>, required = false) {
</div>
</div>
</template>
</template>
<a-modal
v-model:visible="passwordDlg"

Loading…
Cancel
Save