Skip to content

Commit

Permalink
NOISSUE fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mheil committed Mar 22, 2024
1 parent 684135b commit e0cd770
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ 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](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] |
| 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) |

<!-- TOC -->
* [Generic Multifield for AEMaaCS](#generic-multifield-for-aemaacs)
Expand Down Expand Up @@ -215,8 +215,4 @@ Build locally with Maven

```
mvn clean install -PautoInstallBundle
```

[maven-central-version]: https://maven-badges.herokuapp.com/maven-central/com.namics.oss.aem/genericmultifield/badge.svg

[maven-central]: https://maven-badges.herokuapp.com/maven-central/com.namics.oss.aem/genericmultifield
```
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,9 @@
_createListEntry: function (key, label) {
var escapedLabel = $("<div/>").text(label).html();
var labelWithKeyAsFallback = escapedLabel ? escapedLabel : key;
var li = null;
var liInner = null;
li = $('<li>', {id: key, title: labelWithKeyAsFallback, class: "coral-GenericMultiField-listEntry"});
liInner = $('<div>', {text: labelWithKeyAsFallback, class: "coral-GenericMultiField-label"});
var li = $('<li>', {id: key, title: labelWithKeyAsFallback, class: "coral-GenericMultiField-listEntry"});
var liInner = $('<div>', {text: labelWithKeyAsFallback, class: "coral-GenericMultiField-label"});

li.append(liInner);
li.append($(removeButton));
li.append(editButton);
Expand Down

0 comments on commit e0cd770

Please sign in to comment.