raannakasturi commited on
Commit
359083d
·
1 Parent(s): 7e81df3

refactor: Remove default value for cname_domains in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ def app():
51
  with gr.Blocks(title="Project Gatekeeper - Get free SSL Certificates") as webui:
52
  with gr.Tab("STEP 1: Generate CNAME Records"):
53
  with gr.Row():
54
- cname_domains = gr.Textbox(value="thenayankasturi.eu.org, dash.thenayankasturi.eu.org, www.thenayankasturi.eu.org", label="Enter Domains", placeholder="thenayankasturi.eu.org, dash.thenayankasturi.eu.org, www.thenayankasturi.eu.org", type="text", interactive=True)
55
  btn1 = gr.Button(value="Generate CNAME Records & Values")
56
  with gr.Row():
57
  records = gr.Dataframe(label="CNAME Records", headers=["CNAME", "CNAME VALUE"], row_count=(1), col_count=(2))
 
51
  with gr.Blocks(title="Project Gatekeeper - Get free SSL Certificates") as webui:
52
  with gr.Tab("STEP 1: Generate CNAME Records"):
53
  with gr.Row():
54
+ cname_domains = gr.Textbox(label="Enter Domains", placeholder="thenayankasturi.eu.org, dash.thenayankasturi.eu.org, www.thenayankasturi.eu.org", type="text", interactive=True)
55
  btn1 = gr.Button(value="Generate CNAME Records & Values")
56
  with gr.Row():
57
  records = gr.Dataframe(label="CNAME Records", headers=["CNAME", "CNAME VALUE"], row_count=(1), col_count=(2))