Update app.py
Browse files
app.py
CHANGED
@@ -140,7 +140,7 @@ with gr.Blocks(css=custom_css) as demo:
|
|
140 |
url_input = gr.Textbox(
|
141 |
label="أدخل رابط الموقع",
|
142 |
placeholder="https://example.com",
|
143 |
-
rtl=True
|
144 |
)
|
145 |
|
146 |
with gr.Row():
|
@@ -151,21 +151,21 @@ with gr.Blocks(css=custom_css) as demo:
|
|
151 |
info_output = gr.Textbox(
|
152 |
label="معلومات الموقع",
|
153 |
lines=10,
|
154 |
-
|
155 |
rtl=True
|
156 |
)
|
157 |
with gr.Column():
|
158 |
tips_output = gr.Textbox(
|
159 |
label="نصائح تحسين الموقع",
|
160 |
lines=4,
|
161 |
-
|
162 |
rtl=True
|
163 |
)
|
164 |
with gr.Column():
|
165 |
traffic_output = gr.Textbox(
|
166 |
label="تحليل الزيارات",
|
167 |
lines=4,
|
168 |
-
|
169 |
rtl=True
|
170 |
)
|
171 |
|
|
|
140 |
url_input = gr.Textbox(
|
141 |
label="أدخل رابط الموقع",
|
142 |
placeholder="https://example.com",
|
143 |
+
rtl=True
|
144 |
)
|
145 |
|
146 |
with gr.Row():
|
|
|
151 |
info_output = gr.Textbox(
|
152 |
label="معلومات الموقع",
|
153 |
lines=10,
|
154 |
+
interactive=False,
|
155 |
rtl=True
|
156 |
)
|
157 |
with gr.Column():
|
158 |
tips_output = gr.Textbox(
|
159 |
label="نصائح تحسين الموقع",
|
160 |
lines=4,
|
161 |
+
interactive=False,
|
162 |
rtl=True
|
163 |
)
|
164 |
with gr.Column():
|
165 |
traffic_output = gr.Textbox(
|
166 |
label="تحليل الزيارات",
|
167 |
lines=4,
|
168 |
+
interactive=False,
|
169 |
rtl=True
|
170 |
)
|
171 |
|