From ac324fb7e1f0a4a79565b657686055c87c43919d Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Sun, 25 Aug 2024 22:10:59 +0200 Subject: [PATCH] build: remove goo.gl links (#29640) Since goo.gl is being turned down, these links will start 404ing soon. --- src/material/core/style/_elevation.scss | 2 +- src/material/table/table-data-source.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/material/core/style/_elevation.scss b/src/material/core/style/_elevation.scss index 6a9d9cacbba2..1702cfb095f8 100644 --- a/src/material/core/style/_elevation.scss +++ b/src/material/core/style/_elevation.scss @@ -110,7 +110,7 @@ $_ambient-map: ( //

Some content

// // 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; diff --git a/src/material/table/table-data-source.ts b/src/material/table/table-data-source.ts index 02330718e9b9..419e073a070d 100644 --- a/src/material/table/table-data-source.ts +++ b/src/material/table/table-data-source.ts @@ -153,8 +153,8 @@ export class MatTableDataSource 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; }