You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionexportHandler(snapshots: []): void{// function that takes in our tabs[currentTab] object to be exported as a JSON file. NOTE: TypeScript needs to be updated
17
19
constfileDownload: HTMLAnchorElement=document.createElement('a');// invisible HTML element that will hold our tabs[currentTab] object
@@ -118,26 +120,35 @@ function ButtonsContainer(): JSX.Element {
? 'Reconnecting while Reactime is still connected to application will clear all current data. Are you sure you want to proceed with the reconnection?'
130
-
: 'Reactime has unexpectedly disconnected from your application. To continue using Reactime, please reconnect. WARNING: Reconnecting will clear all data currently stored in Reactime, so consider downloading the data before proceeding with the reconnection, if needed'}
Reconnecting while Reactime is still connected to the application will clear all current data. Are you sure you want to proceed with the reconnection?
136
+
</>
137
+
: <>
138
+
Reactime has unexpectedly disconnected from your application. To continue using Reactime, please reconnect.
139
+
<br/>
140
+
WARNING: Reconnecting will clear all data currently stored in Reactime, so consider downloading the data before proceeding with the reconnection, if needed.
141
+
</>}
131
142
</DialogContent>
132
-
{/* I don't know how to split this up ^ I wanted there to be a break between "please reconnect." and "WARNING:" but idk how */}
0 commit comments