-
Notifications
You must be signed in to change notification settings - Fork 34
feat: templated external links (draft) #1910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
a5a3c28
9bc67e1
0e97ce2
004482b
7255794
237d4a1
f263e26
946f145
67671bb
0f7c8e8
3cbeb67
16c4dec
584613f
6b407e3
12c11b8
e9b65e3
f40bd25
f757346
79a6695
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ import { NO_ERRORS_SCHEMA } from "@angular/core"; | |
import { MatCheckboxChange } from "@angular/material/checkbox"; | ||
import { TableModule } from "./table.module"; | ||
|
||
// Jasmine testing framework descriptions for Angular component TableComponent | ||
|
||
Comment on lines
+14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really need this comment here? |
||
describe("TableComponent", () => { | ||
let component: TableComponent; | ||
let fixture: ComponentFixture<TableComponent>; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ import { | |
import { SelectionModel } from "@angular/cdk/collections"; | ||
import { MatCheckboxChange } from "@angular/material/checkbox"; | ||
|
||
// Accessory types and definition for Angular component TableComponent | ||
|
||
Comment on lines
+12
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need the comment? |
||
export interface TableColumn { | ||
name: string; | ||
icon: string; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ import { MatPaginatorModule } from "@angular/material/paginator"; | |
import { MatSortModule } from "@angular/material/sort"; | ||
import { MatTableModule } from "@angular/material/table"; | ||
|
||
// NgModule declaration for Angular component TableComponent | ||
|
||
Comment on lines
+14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need the comment? |
||
@NgModule({ | ||
declarations: [TableComponent], | ||
imports: [ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should make this code more robust.
Please read my comments below and see if they make sense.