diff --git a/README.md b/README.md
index fb081fb..275908f 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,35 @@
# Generic Multifield for AEMaaCS
-| System | Status |
-|------------|------------------------------------------------------------------------------------------------------|
-| CI master | ![release](https://github.com/merkle-open/aem-generic-multifield/workflows/release%20and%20deploy/badge.svg) |
-| CI develop | ![snapshot](https://github.com/merkle-open/aem-generic-multifield/workflows/deploy%20snapshot/badge.svg) |
-| Dependency | [![Maven Central][maven-central-version]][maven-central] |
+With this project you can use a widget
+in [AEM as a Cloud Service](https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/release-notes/home.html)
+Touch UI which lets you create a generic multifield in a dialog.
+
+| System | Status |
+|------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| CI master | [![release and deploy](https://github.com/merkle-open/aem-generic-multifield/actions/workflows/release-and-deploy-release.yml/badge.svg?branch=master)](https://github.com/merkle-open/aem-generic-multifield/actions/workflows/release-and-deploy-release.yml) |
+| CI develop | [![deploy snapshot](https://github.com/merkle-open/aem-generic-multifield/actions/workflows/deploy-snapshot.yml/badge.svg?branch=develop)](https://github.com/merkle-open/aem-generic-multifield/actions/workflows/deploy-snapshot.yml) |
+| Dependency | [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.namics.oss.aem/genericmultifield/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.namics.oss.aem/genericmultifield) |
+
+
+* [Generic Multifield for AEMaaCS](#generic-multifield-for-aemaacs)
+ * [Requirements](#requirements)
+ * [Maven Dependency](#maven-dependency)
+ * [in AEM](#in-aem)
+ * [Component Dialog](#component-dialog)
+ * [Properties](#properties)
+ * [Item-Dialog](#item-dialog)
+ * [Repository](#repository)
+ * [Development](#development)
+
+
+## Requirements
+
+| System | Version |
+|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| AEMaaCS | min version: [2023.12.0](https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/release-notes/release-notes/2023/release-notes-2023-12-0) |
+
+## Maven Dependency
-With this project you can use a widget in [AEM as a Cloud Service](https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/release-notes/home.html) Touch UI which lets you create a generic multifield in a dialog.
-
-## Usage
-
-### Maven Dependency
```
com.namics.oss.aem
@@ -19,65 +38,77 @@ With this project you can use a widget in [AEM as a Cloud Service](https://exper
```
-### in AEM
-Since the Generic Multifield is built as an OSGi bundle, only the bundle has to be installed into your AEM instance.
-With the common AEM archetype it can be added within the embedded configuration of the `content-package-maven-plugin` plugin.
+## in AEM
+
+Since the Generic Multifield is built as an OSGi bundle, only the bundle has to be installed into your AEM instance.
+With the common AEM archetype it can be added within the embedded configuration of the `content-package-maven-plugin`
+plugin.
+
```xml
-
- com.day.jcr.vault
- content-package-maven-plugin
- true
-
- ...
-
-
- com.namics.oss.aem
- genericmultifield
- /apps/myProject/install
-
-
-
-
+
+
+ com.day.jcr.vault
+ content-package-maven-plugin
+ true
+
+ ...
+
+
+ com.namics.oss.aem
+ genericmultifield
+ /apps/myProject/install
+
+
+
+
```
-
-#### Component Dialog
+### Component Dialog
+
Example usage of the Generic Multifield in your component `_cq_dialog.xml` definition within AEM:
+
```xml
-
- ...
+ ...
+
+
+ ...
```
-##### Properties
-**itemDialog**: path reference to the dialog definition of a generic multifield item.
-**itemNameProperty**: Defines the value representation of a generic multifield entry within the component dialog. Must be a reference to a item dialog property.
-**minElements**: Defines the min amount of generic multifield entries.
-**maxElements**: Defines the max amount of generic multifield entries.
-**required**: If set to "{Boolean}true", the main component dialog will not validate until at least one item hast been defined.
-**itemStorageNode**: Defines the parent node name created within the component node. Generic multifield items will be saved beneath this node (defaults to 'items').
+
+#### Properties
+
+| Property | Function |
+|----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
+| **itemDialog** | Path reference to the dialog definition of a generic multifield item. |
+| **itemNameProperty** | Defines the value representation of a generic multifield entry within the component dialog. Must be a reference to an item dialog property. |
+| **minElements** | Defines the minimal amount of generic multifield entries. |
+| **maxElements** | Defines the maximal amount of generic multifield entries. |
+| **required** | If set to `{Boolean}true`, the main component dialog will not validate until at least one item hast been defined. |
+| **itemStorageNode** | Defines the parent node name created within the component node. Generic multifield items will be saved beneath this node
(default: `items`). |
![main dialog](docs/component.png)
-#### Item-Dialog
-Example definition of the Generic Multifield item in your component's `item-dialog.xml` referenced within `` definition via property `itemDialog`:
+### Item-Dialog
+
+Example definition of the Generic Multifield item in your component's `item-dialog.xml` referenced
+within `` definition via property `itemDialog`:
+
```xml
+
+
+ Merkle Open Source
+ opensource@merkle.com
+ Merkle DACH
+ https://www.merkle.com/dach/de
+
+
+
3.3.0
diff --git a/src/main/resources/SLING-INF/apps/merkle/genericmultifield/clientlibs/js/CUI.GenericMultiField.js b/src/main/resources/SLING-INF/apps/merkle/genericmultifield/clientlibs/js/CUI.GenericMultiField.js
index 3c9ccc5..c017c48 100644
--- a/src/main/resources/SLING-INF/apps/merkle/genericmultifield/clientlibs/js/CUI.GenericMultiField.js
+++ b/src/main/resources/SLING-INF/apps/merkle/genericmultifield/clientlibs/js/CUI.GenericMultiField.js
@@ -157,10 +157,9 @@
_createListEntry: function (key, label) {
var escapedLabel = $("").text(label).html();
var labelWithKeyAsFallback = escapedLabel ? escapedLabel : key;
- var li = null;
- var liInner = null;
- li = $('', {id: key, title: labelWithKeyAsFallback, class: "coral-GenericMultiField-listEntry"});
- liInner = $('', {text: labelWithKeyAsFallback, class: "coral-GenericMultiField-label"});
+ var li = $('
', {id: key, title: labelWithKeyAsFallback, class: "coral-GenericMultiField-listEntry"});
+ var liInner = $('', {text: labelWithKeyAsFallback, class: "coral-GenericMultiField-label"});
+
li.append(liInner);
li.append($(removeButton));
li.append(editButton);