Skip to content

Commit

Permalink
chore(format): formats code with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankjadda committed Aug 11, 2021
1 parent 49d92d7 commit 5cd5eed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE/1-bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ body:
label: Expected behaviour
validations:
required: true

- type: input
id: library-version
attributes:
Expand All @@ -58,15 +58,13 @@ body:
validations:
required: true


- type: textarea
id: screenshots
attributes:
label: Screenshots
placeholder: |
If applicable, add screenshots to help explain your problem.
- type: textarea
id: desktop
attributes:
Expand All @@ -76,7 +74,6 @@ body:
Browser [e.g. Google Chrome, Mozilla Firefox, Micro Soft Edge, Safari]
Version [e.g. 92]
- type: textarea
id: mobile
attributes:
Expand All @@ -86,7 +83,7 @@ body:
OS: [e.g. iOS]
Browser [e.g. Google Chrome, Mozilla Firefox, Micro Soft Edge, Safari]
Version [e.g. 91]
- type: textarea
id: other
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-feature-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ body:
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: true

- type: textarea
id: other
attributes:
Expand Down
4 changes: 2 additions & 2 deletions projects/ngx-cookie-service/src/lib/cookie.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class CookieService {
domain?: string;
secure?: boolean;
sameSite?: 'Lax' | 'None' | 'Strict';
},
}
): void;

set(
Expand Down Expand Up @@ -190,7 +190,7 @@ export class CookieService {
options.secure = true;
console.warn(
`[ngx-cookie-service] Cookie ${name} was forced with secure flag because sameSite=None.` +
`More details : https://github.com/stevermeister/ngx-cookie-service/issues/86#issuecomment-597720130`,
`More details : https://github.com/stevermeister/ngx-cookie-service/issues/86#issuecomment-597720130`
);
}
if (options.secure) {
Expand Down

0 comments on commit 5cd5eed

Please sign in to comment.