Skip to content

Commit

Permalink
*Removed default branch in api/sc. *Add margin to the left and right …
Browse files Browse the repository at this point in the history
…side of scorecard
  • Loading branch information
cseptimo committed Jun 11, 2024
1 parent f8aeb84 commit fd690ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def board_api(board_name, param=None):
@server_bp.route("api/sc/<param>")
def score_api(param=None):
default_jenkins_project = "HW_tests/HW_test_multiconfig"
default_branch = "boot_partition_main"
default_branch = ""
default_size = 7
default_offset = 0
filters = filter_gen(urlparse(unquote(request.url)).query)
Expand Down
2 changes: 1 addition & 1 deletion app/score_card/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def report_tabs(data, active_tab="t_summary"):
def generate_report_tabs(data):
return html.Div(
id="sc_report_div",
style = {},
style = { "margin-left": "2%", "margin-right": "2%"},
children=[
report_tabs(data)
]
Expand Down

0 comments on commit fd690ea

Please sign in to comment.