Compare commits

...

2 Commits

Author SHA1 Message Date
8c01206b89 Fix rendering of x-attribute-type missing defaults from edit/new/langtag/update as a result of bab5a262
Some checks failed
Create Docker Image / Test Application (x86_64) (push) Successful in 29s
Create Docker Image / Final Docker Image Manifest (push) Has been cancelled
Create Docker Image / Build Docker Image (arm64) (push) Has been cancelled
Create Docker Image / Build Docker Image (x86_64) (push) Has been cancelled
2025-05-02 11:38:52 +10:00
e025a6af73 Revert version to 2.1.3-dev
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 27s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m22s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 4m31s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s
2025-05-01 12:12:20 +09:30
3 changed files with 8 additions and 3 deletions

View File

@ -1 +1 @@
v2.1.2-rel
v2.1.3-dev

View File

@ -245,6 +245,11 @@ select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__
padding: 0.25em 0.45em;
}
/* Remove the shadow outline on an opened box */
.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection {
box-shadow: none;
}
.input-group-text {
background-color: #fafafa;
}

View File

@ -49,10 +49,10 @@
@break
@case(2)
<x-attribute-type :edit="true" :o="$o->getObject('rdn')"/>
<x-attribute-type :o="$o->getObject('rdn')" :edit="TRUE" :new="FALSE" :langtag="Entry::TAG_NOTAG" :updated="FALSE"/>
@foreach ($o->getVisibleAttributes() as $ao)
<x-attribute-type :edit="true" :o="$ao"/>
<x-attribute-type :o="$ao" :edit="TRUE" :new="FALSE" :langtag="Entry::TAG_NOTAG" :updated="FALSE"/>
@endforeach
@include('fragment.dn.add_attr')