Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Frontend V2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GraphPolaris
Frontend V2
Merge requests
!314
Fix/tablevis export
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix/tablevis export
fix/tablevis_export
into
main
Overview
3
Commits
2
Pipelines
3
Changes
5
2 unresolved threads
Hide all comments
Merged
Samed
requested to merge
fix/tablevis_export
into
main
5 months ago
Overview
3
Commits
2
Pipelines
3
Changes
5
2 unresolved threads
Hide all comments
Expand
BUG:table vis export button - icons not working
Changes:
Changed overflow from hidden to visible in buttons.module.scss
Added new .exported class with translation transform
Pagination Component:
Replaced icon-based navigation with custom SVG arrows
Updated class names and structure for better responsiveness
Modified display of items count with separate spans and semantic classes
Table Visualization
Improved "Unique values" display with better styling and layout
Added whitespace control and font styling classes
Restructured DOM elements for better semantics
Improved exportImage functionality with proper element cloning and cleanup
0
0
Merge request reports
Compare
main
version 2
c8f89e04
5 months ago
version 1
a4920131
5 months ago
main (base)
and
latest version
latest version
b7c4049f
2 commits,
4 months ago
version 2
c8f89e04
2 commits,
5 months ago
version 1
a4920131
2 commits,
5 months ago
5 files
+
30
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
libs/shared/lib/components/buttons/buttons.module.scss
+
7
−
1
Options
@@ -20,7 +20,7 @@
}
padding
:
0
.25em
0
.75em
;
span
{
overflow
:
hidden
;
overflow
:
visible
;
text-overflow
:
ellipsis
;
line-height
:
1em
;
}
@@ -144,3 +144,9 @@
.btn-rounded
{
@apply
rounded-full
;
}
.exported
{
span
{
transform
:
translate
(
0px
,
-8px
);
}
}
\ No newline at end of file
Loading