Skip to content

Commit

Permalink
update licence file
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Feb 15, 2019
1 parent 430ab4b commit db77afb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Narwhal Technologies Inc.
Copyright (c) 2018-2019 Narwhal Technologies Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ <h2 mat-dialog-title><span fxFlex>Create a new workspace</span></h2>
name="value"
/>
<mat-error *ngIf="control.invalid && control.errors.nameTaken">
{{ ngNewForm.value.path + '/' + control.value | normalizePath }}
{{
ngNewForm.value.path + '/' + control.value | normalizePath
}}
already exists
</mat-error>
<mat-icon matSuffix>create_new_folder</mat-icon>
Expand Down
10 changes: 6 additions & 4 deletions libs/server/src/lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export type SelectDirectory = (options: {
title: string;
buttonLabel: string;
}) => Promise<string | undefined>;
export type SelectDirectory = (
options: {
title: string;
buttonLabel: string;
}
) => Promise<string | undefined>;

0 comments on commit db77afb

Please sign in to comment.