We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87093f commit 40a4dd8Copy full SHA for 40a4dd8
CHANGELOG
@@ -1,3 +1,5 @@
1
+1.1.1
2
+ - reg: remove some style hints to make line break in resource names work
3
1.1.0
4
- feat: improve resource listing to show full resource names
5
1.0.0
ckanext/dcor_theme/cli/patch_ckan_templates.py
@@ -36,6 +36,10 @@ def patch_wider_resource_listing():
36
f'<a {st} href="'),
37
('<a class="flex-fill" href="',
38
f'<a class="flex-fill" {st} href="'),
39
+ # remove d-flex which breaks the word-wrap hack
40
+ ('<li class="nav-item d-flex justify-content-between position-relative">', # noqa: E501
41
+ '<li class="nav-item justify-content-between position-relative">'
42
+ ),
43
]:
44
data_res = data_res.replace(old, new)
45
path_template_res.write_text(data_res)
0 commit comments