diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-08-10 16:02:22 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-08-10 20:21:32 +0200 |
commit | d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4 (patch) | |
tree | 03ad7aa9ab7d9bcfb0f5b354149da9c014052010 /server/sonar-web/src/main/js/apps/groups | |
parent | 29b5f4a0ebf686f9dee7f1d6c6eab65fe381654d (diff) | |
download | sonarqube-d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4.tar.gz sonarqube-d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4.zip |
update main dependencies & fix autofixable eslint warnings (#601)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/groups')
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/components/List.tsx | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/components/__tests__/__snapshots__/EditMembers-test.tsx.snap | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/components/List.tsx b/server/sonar-web/src/main/js/apps/groups/components/List.tsx index bac8da1aa30..1971e243c15 100644 --- a/server/sonar-web/src/main/js/apps/groups/components/List.tsx +++ b/server/sonar-web/src/main/js/apps/groups/components/List.tsx @@ -35,7 +35,7 @@ interface Props { export default function List(props: Props) { return ( <div className="boxed-group boxed-group-inner"> - <table id="groups-list" className="data zebra zebra-hover"> + <table className="data zebra zebra-hover" id="groups-list"> <thead> <tr> <th /> diff --git a/server/sonar-web/src/main/js/apps/groups/components/__tests__/__snapshots__/EditMembers-test.tsx.snap b/server/sonar-web/src/main/js/apps/groups/components/__tests__/__snapshots__/EditMembers-test.tsx.snap index 4af0e007372..3e3b73245bb 100644 --- a/server/sonar-web/src/main/js/apps/groups/components/__tests__/__snapshots__/EditMembers-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/groups/components/__tests__/__snapshots__/EditMembers-test.tsx.snap @@ -45,7 +45,7 @@ exports[`should edit members 1`] = ` "clipRule": "evenodd", "fillRule": "evenodd", "strokeLinejoin": "round", - "strokeMiterlimit": "1.41421", + "strokeMiterlimit": 1.41421, } } version="1.1" @@ -116,7 +116,7 @@ exports[`should edit members 2`] = ` "clipRule": "evenodd", "fillRule": "evenodd", "strokeLinejoin": "round", - "strokeMiterlimit": "1.41421", + "strokeMiterlimit": 1.41421, } } version="1.1" @@ -393,7 +393,7 @@ exports[`should edit members 2`] = ` "clipRule": "evenodd", "fillRule": "evenodd", "strokeLinejoin": "round", - "strokeMiterlimit": "1.41421", + "strokeMiterlimit": 1.41421, } } version="1.1" @@ -525,7 +525,7 @@ exports[`should edit members 3`] = ` "clipRule": "evenodd", "fillRule": "evenodd", "strokeLinejoin": "round", - "strokeMiterlimit": "1.41421", + "strokeMiterlimit": 1.41421, } } version="1.1" |