-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d2ad69
commit c7d45de
Showing
7 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
application/frontend/src/app/core/containers/csv-help-dialog/csv-help-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<h3 class="strong">What data can I upload via CSV?</h3> | ||
<p> | ||
If you have data for vehicles, shipments, or vehicle operators in individual .csv files, you can | ||
use this option to upload your data. You can also use this option get sample files to see how your | ||
data should be structured. | ||
</p> |
Empty file.
22 changes: 22 additions & 0 deletions
22
...cation/frontend/src/app/core/containers/csv-help-dialog/csv-help-dialog.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { CsvHelpDialogComponent } from './csv-help-dialog.component'; | ||
|
||
describe('CsvHelpDialogComponent', () => { | ||
let component: CsvHelpDialogComponent; | ||
let fixture: ComponentFixture<CsvHelpDialogComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [CsvHelpDialogComponent], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(CsvHelpDialogComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
9 changes: 9 additions & 0 deletions
9
application/frontend/src/app/core/containers/csv-help-dialog/csv-help-dialog.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-csv-help-dialog', | ||
templateUrl: './csv-help-dialog.component.html', | ||
styleUrls: ['./csv-help-dialog.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class CsvHelpDialogComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters