Skip to content

Commit 523f92b

Browse files
committed
chore(*): address the requested changes
1 parent 183f055 commit 523f92b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
All notable changes for each version of this project will be documented in this file.
44

55
## 10.1.0
6-
- `IgxToast`
7-
- `message` property has been deprecated. You can use place the message in the toast content or pass it as parameter to the show method instead.
8-
- An optional string parameter `message` has been added to `show()` method.
9-
- `IgxSnackbar`
10-
- `message` property has been deprecated. You can use place the message in the snackbar content or pass it as parameter to the show method instead.
11-
- An optional string parameter `message` has been added to `show()` method.
126

137
### New Features
148
- `IgxColumn`
159
- Added `byHeader` parameter to the `autosize` method which specifies if the autosizing should be based only on the header content width.
10+
- `IgxToast`
11+
- `message` property has been deprecated. You can place the *message text* in the toast content or pass it as parameter to `show` method instead.
12+
- An optional string parameter `message` has been added to `show()` method.
13+
- `IgxSnackbar`
14+
- `message` property has been deprecated. You can place the *message text* in the snackbar content or pass it as parameter to `show` method instead.
15+
- An optional string parameter `message` has been added to `show()` method.
1616

1717
## 10.0.0
1818

projects/igniteui-angular/src/lib/snackbar/snackbar.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ export class IgxSnackbarComponent {
212212
* this.snackbar.show();
213213
* ```
214214
*/
215-
public show(msg?: string): void {
215+
public show(message?: string): void {
216216
clearTimeout(this.timeoutId);
217-
if (msg !== undefined) { this.snackbarMessage = msg; }
217+
if (message !== undefined) { this.snackbarMessage = message; }
218218
setTimeout(this.timeoutId);
219219
this.isVisible = true;
220220

0 commit comments

Comments
 (0)