diff --git a/.github/workflows/dry-run.yml b/.github/workflows/dry-run.yml index 1072c75f0f..8e2ded6ec7 100644 --- a/.github/workflows/dry-run.yml +++ b/.github/workflows/dry-run.yml @@ -12,4 +12,4 @@ on: jobs: dry-run: - uses: cloudscape-design/actions/.github/workflows/dry-run.yml@main + uses: cloudscape-design/actions/.github/workflows/dry-run.yml@chat diff --git a/pages/tag-editor/simple.page.tsx b/pages/tag-editor/simple.page.tsx index b70422643e..42ed9e61f8 100644 --- a/pages/tag-editor/simple.page.tsx +++ b/pages/tag-editor/simple.page.tsx @@ -31,8 +31,12 @@ export default function () { const [loading, setLoading] = useState(true); const [tags, setTags] = useState>(() => [ - ...range(10).map(i => ({ key: `Tag ${i + 1}`, value: `Tag ${i + 1} - Value ${i + 1}`, existing: true })), - ...range(20).map(i => ({ key: `Tag ${i + 21}`, value: `Tag ${i + 21} - Value ${i + 21}`, existing: false })), + // ...range(10).map(i => ({ key: `Tag ${i + 1}`, value: `Tag ${i + 1} - Value ${i + 1}`, existing: true })), + // ...range(20).map(i => ({ key: `Tag ${i + 21}`, value: `Tag ${i + 21} - Value ${i + 21}`, existing: false })), + { key: ' foo', value: 'bar', existing: true }, + { key: ' foo', value: 'bar', existing: true }, + { key: ' foo', value: 'bar', existing: true }, + { key: ' foo', value: 'bar', existing: true }, ]); const onChange = useCallback((event: NonCancelableCustomEvent) => { diff --git a/src/cards/index.tsx b/src/cards/index.tsx index 015b80fd91..cd12580e49 100644 --- a/src/cards/index.tsx +++ b/src/cards/index.tsx @@ -106,6 +106,7 @@ const Cards = React.forwardRef(function ( const hasToolsHeader = header || filter || pagination || preferences; const hasFooterPagination = isMobile && variant === 'full-page' && !!pagination; const headerRef = useRef(null); + console.log('dummy'); const { scrollToTop, scrollToItem } = stickyScrolling(refObject, headerRef); stickyHeader = !isMobile && stickyHeader;