Skip to content

build: remove goo.gl links #29640

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

Merged
merged 1 commit into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/material/core/style/_elevation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ $_ambient-map: (
// <div id="external-card" class="mat-elevation-z2"><p>Some content</p></div>
//
// For an explanation of the design behind how elevation is implemented, see the design doc at
// https://goo.gl/Kq0k9Z.
// https://docs.google.com/document/d/1W3NGSLqDZzjbBBLW2C6y_6NUxtvdZAVaJvg58LY3Q0E/edit

// The default duration value for elevation transitions.
$transition-duration: 280ms !default;
Expand Down
4 changes: 2 additions & 2 deletions src/material/table/table-data-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ export class MatTableDataSource<T, P extends MatPaginator = MatPaginator> extend
if (_isNumberValue(value)) {
const numberValue = Number(value);

// Numbers beyond `MAX_SAFE_INTEGER` can't be compared reliably so we
// leave them as strings. For more info: https://goo.gl/y5vbSg
// Numbers beyond `MAX_SAFE_INTEGER` can't be compared reliably so we leave them as strings.
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER
return numberValue < MAX_SAFE_INTEGER ? numberValue : value;
}

Expand Down
Loading