Skip to content

Commit 7a6d372

Browse files
committed
fix conflict
2 parents e223ad4 + c59b34a commit 7a6d372

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"cli": {
4-
"analytics": false
4+
"analytics": "28bf0e25-7262-4cd2-8008-6af8c18cc349"
55
},
66
"version": 1,
77
"newProjectRoot": "projects",

src/app/core/components/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, OnDestroy, OnInit } from '@angular/core';
1+
import { Component, OnInit } from '@angular/core';
22

33
@Component({
44
selector: 'admin-root',

src/app/core/components/network-status/network-status.component.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ import { fromEvent, Observable, Subscription } from 'rxjs';
1616
<div class="p-4">
1717
<div class="flex items-start">
1818
<div class="flex-shrink-0">
19-
<!-- Heroicon name: outline/check-circle -->
2019
<svg
2120
class="h-6 w-6"
22-
[ngClass]="{'text-green-400': networkStatus === 'online', 'text-red-400': networkStatus === 'offline'}"
21+
[ngClass]="{
22+
'text-green-400': networkStatus === 'online',
23+
'text-red-400': networkStatus === 'offline'
24+
}"
2325
xmlns="http://www.w3.org/2000/svg"
2426
fill="none"
2527
viewBox="0 0 24 24"

src/app/modules/dashboard/pages/dashboard/dashboard.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,5 +170,5 @@ <h3 class="text-lg font-medium text-slate-900 dark:text-white">
170170
</section>
171171
</div>
172172

173-
<!-- <notification-error [isOpen]="isOpen" (toggleShowNotification)="tosggle($event)" message="Connecté avec succes!" description="qwertyuio rtyui wertyui ertyui"></notification-error> -->
174-
<!-- <notification-success [isOpen]="isOpen" (toggleShowNotification)="toggle($event)" message="Connecté avec succes!" description="qwertyuio rtyui wertyui ertyui"></notification-success> -->
173+
<!-- <notification-error [isOpen]="isOpen" (toggleShowNotification)="toggle($event)" message="Connecté avec succes!" description="qwertyuio rtyui wertyui ertyui"></notification-error> -->
174+
<notification-success [isOpen]="isOpen" (toggleShowNotification)="toggle($event)" message="Connecté avec succes!" description="qwertyuio rtyui wertyui ertyui"></notification-success>

src/app/shared/components/notifications/error.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
2222
<p class="mt-1 text-sm text-red-500">{{ description }}</p>
2323
</div>
2424
<div class="ml-4 flex flex-shrink-0">
25-
<button (click)="toggle()" type="button" class="inline-flex rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-green-500 focus:ring-offset-2">
25+
<button (click)="toggle()" type="button" class="inline-flex rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2">
2626
<span class="sr-only">Close</span>
2727
<svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
2828
<path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z" />

0 commit comments

Comments
 (0)