Skip to content

Commit

Permalink
Merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshadrach committed Apr 28, 2024
1 parent 8451a17 commit f0ee4de
Showing 1 changed file with 0 additions and 102 deletions.
102 changes: 0 additions & 102 deletions scripts/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,108 +198,6 @@ def escape_ansi(line):
children="",
style={"display": "none"},
),
html.Div(
dash_table.DataTable(
id="pr_table",
data=pd.DataFrame().to_dict("records"),
page_current=0,
page_size=10,
sort_action="custom",
sort_mode="single",
columns=[
{"id": "Authors", "name": "Authors"},
{"id": "PR", "name": "PR", "presentation": "markdown"},
],
style_table={"width": "60%", "margin": "auto"},
),
style={
"width": "100%",
"margin-left": "auto",
"margin-right": "auto",
"margin-bottom": "30px",
},
),
html.Div(
[
html.P(
"Title:",
style={
"width": "50px",
"margin-right": "10px",
"display": "inline",
},
),
dcc.Input(
id="issue_title",
type="text",
size="80",
style={"display": "inline"},
),
],
style={"margin-bottom": "30px"},
),
html.Div(
[
html.P(
"Body:",
style={
"width": "50px",
"margin-right": "10px",
"display": "inline",
"vertical-align": "top",
},
),
dcc.Textarea(
id="issue_body",
value="",
style={"width": "60%", "height": 200},
),
],
style={"margin-bottom": "30px"},
),
html.Div(
[
html.P(
"Labels:",
style={
"width": "50px",
"margin-right": "10px",
"display": "inline",
},
),
dcc.Dropdown(
id="issue_labels",
options=labels,
multi=True,
style={"width": "900px"},
),
],
style={"margin-bottom": "30px"},
),
html.Div(
[
html.P(
"Milestone:",
style={
"width": "50px",
"margin-right": "10px",
"display": "inline",
},
),
dcc.Dropdown(
id="issue_milestone",
options=milestones,
multi=False,
style={"width": "150px"},
),
],
style={"margin-bottom": "30px"},
),
html.P(
id="gh_cli_cmd",
children="",
style={"display": "none"},
),
html.Div(
children=[
html.Div(
Expand Down

0 comments on commit f0ee4de

Please sign in to comment.