Merge pull request #5977 from jitendra-webkul/master

Issue #5965 fixed
This commit is contained in:
Jitendra Singh 2022-03-10 12:18:25 +05:30 committed by GitHub
commit 6036cf5b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 10 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,9 +1,9 @@
{
"/js/jquery-ez-plus.js": "/js/jquery-ez-plus.js?id=839a8f4f976c7cb12580c31185296bdb",
"/js/jquery-ez-plus.js": "/js/jquery-ez-plus.js?id=ba3c7cada62de152fd8fce211d0b1b70",
"/js/velocity-core.js": "/js/velocity-core.js?id=8010dfb021a49555afa74bf3bf25b33e",
"/js/velocity.js": "/js/velocity.js?id=8467110c3c1ee5e363d02172acbf1a3f",
"/js/velocity.js": "/js/velocity.js?id=df31908bee05eab66fcc3860ec83c3c5",
"/js/manifest.js": "/js/manifest.js?id=3cded37ef514b0fb89b10e7109801248",
"/js/components.js": "/js/components.js?id=f536199f308a82f48041993dd85acdd3",
"/js/components.js": "/js/components.js?id=7e5f4737e2e5faffbeaf2a2d78e64147",
"/css/velocity.css": "/css/velocity.css?id=239077722644a8e239d497ae7c392d41",
"/css/velocity-admin.css": "/css/velocity-admin.css?id=b67a82956e53163b5e3ff45a44f9778f",
"/images/icon-calendar.svg": "/images/icon-calendar.svg?id=870d0f733a58377422766f3152e15486",

View File

@ -24,8 +24,6 @@
<style lang="scss">
.outer-assets-container {
height: 420px;
.image-container {
.magnifier {
> img {

View File

@ -191,7 +191,7 @@
name="password"
ref="password"
type="password"
v-validate="'min:6|max:18'" />
v-validate="'min:6'" />
<span class="control-error" v-if="errors.has('password')" v-text="errors.first('password')"></span>
</div>

View File

@ -97,7 +97,7 @@
<div class="control-group" :class="[errors.has('password') ? 'has-error' : '']">
<label for="password" class="required">{{ __('admin::app.users.users.password') }}</label>
<input type="password" v-validate="'required|min:6|max:18'" class="control" id="password" name="password" data-vv-as="&quot;{{ __('admin::app.users.users.password') }}&quot;"/>
<input type="password" v-validate="'required|min:6'" class="control" id="password" name="password" data-vv-as="&quot;{{ __('admin::app.users.users.password') }}&quot;"/>
<span class="control-error" v-if="errors.has('password')" v-text="errors.first('password')"></span>
</div>