Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/InseeFrLab/onyxia-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed Apr 19, 2021
2 parents 8a44fa3 + cce1429 commit fe98433
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### **0.7.49** (2021-04-16)

- When multiple service url, take the first in alphabetical order
- Account: editable text ok
- Account: Toggle
- Account: Language
- Account S3 init script
- First working draft of working Account row
- Account tabs done

### **0.7.48** (2021-04-14)

- Update package.json
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/commons/service-card/card-my-service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const getLabel = (label: any) => (how: any) => () => (
);

const getServiceUrl = (service: Service) =>
service.urls ? service.urls[0].split(',')[0] : undefined;
service.urls ? service.urls.sort()[0].split(',')[0] : undefined;

export default CarteMonService;

Expand Down

0 comments on commit fe98433

Please sign in to comment.