Skip to content

Commit

Permalink
fix display of services
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoLechemia committed May 23, 2024
1 parent 2bf6dfd commit 7dc944a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ CHANGELOG
=========


1.1.1 (22-05-2024)
1.1.1 (23-05-2024)
-------------------

- Correction du remplacement des valeurs 0 par NaN dans les exports

- Correction d'un mauvais affichage des services

1.1.0 (21-05-2024)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<style>.mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}@charset "UTF-8";:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,:after,:before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}html,body{height:100%;background:#d9d9d930}body{margin:0;font-family:Roboto,Helvetica Neue,sans-serif}</style><link rel="stylesheet" href="styles.0aabf2673f7fb519.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.0aabf2673f7fb519.css"></noscript></head>
<body class="mat-typography">
<app-root></app-root>
<script src="runtime.550550991fb86cd4.js" type="module"></script><script src="polyfills.19631a41f00ad5ab.js" type="module"></script><script src="scripts.f42a1544a32fd432.js" defer></script><script src="main.abfc8c535c53a62c.js" type="module"></script>
<script src="runtime.550550991fb86cd4.js" type="module"></script><script src="polyfills.19631a41f00ad5ab.js" type="module"></script><script src="scripts.f42a1544a32fd432.js" defer></script><script src="main.9e2e7e6df0f2056a.js" type="module"></script>

</body></html>
1 change: 1 addition & 0 deletions dist/main.9e2e7e6df0f2056a.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/main.abfc8c535c53a62c.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/maplist/maplist.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<mat-form-field appearance="outline" *ngIf="data.services.getValue()?.length > 1">
<mat-label>Service</mat-label>
<mat-select [formControl]="globalService.currentService">
<mat-option *ngFor="let service of data.services |async" [value]="service"> {{service}} </mat-option>
<mat-option *ngFor="let service of data.services |async" [value]="service.service"> {{service.service}} </mat-option>
</mat-select>
</mat-form-field>
<mat-form-field class="margin-l" appearance="outline">
Expand Down

0 comments on commit 7dc944a

Please sign in to comment.