Skip to content

Commit

Permalink
Keep author field expanded by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoniafriedrich committed Nov 18, 2024
1 parent fbb785d commit db5f32e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/resources/META-INF/resources/dbt/js/layout.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/**
* Makes person extended visible at all times
*/

$(".personExtended_box").each(function() {
$(this).find("legend.mir-fieldset-legend.hiddenDetail").removeClass("hiddenDetail");
$(this).find("div.mir-fieldset-content.personExtended-container.d-none").removeClass("d-none");
});
/**
* Detect vendor prefix.
*/
Expand Down Expand Up @@ -166,4 +174,4 @@ $(document).ready(function () {
initSVGImageMasks();
initOverlayScroller();
initWaves();
});
});

0 comments on commit db5f32e

Please sign in to comment.