File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
scripts/components/server Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 129129 },
130130
131131 _socket_error : function (err ) {
132- this .$emit (' socket- error' , {err});
132+ this .$emit (' socket:: error' , {err});
133133 },
134134
135135 _socket_connect : function () {
136- this .$emit (' socket- connected' );
136+ this .$emit (' socket:: connected' );
137137 },
138138
139139 _socket_status : function (data ) {
140- this .$emit (' socket- status' , {data});
140+ this .$emit (' socket:: status' , {data});
141141 },
142142
143143 _socket_serverLog : function (data ) {
Original file line number Diff line number Diff line change 3939 * logs from the server to populate into the terminal.
4040 */
4141 mounted : function () {
42- this .$parent .$on (' socket- connected' , () => {
42+ this .$parent .$on (' socket:: connected' , () => {
4343 this .terminal .open (this .$refs .terminal );
4444 this .terminal .fit ();
4545 this .terminal .clear ();
5252 this .terminal .writeln (data);
5353 });
5454
55- this .$parent .$on (' socket- status' , s => {
55+ this .$parent .$on (' socket:: status' , s => {
5656 if (s === Status .STATUS_OFF ) {
5757 this .loadingConsole = false ;
5858 }
Original file line number Diff line number Diff line change 11.spinner {
2- color : transparent;
2+ @apply . h-4 . relative . bg- transparent ;
33 pointer- events: none;
4- position : relative;
5- @apply .h-16 ;
4+
5+ & .spinner-xl {
6+ @apply .h-16 ;
7+ }
68
79 & : after {
810 @apply .border-2 .border-grey-light .absolute .block .h-4 .w-4 .rounded-full ;
You can’t perform that action at this time.
0 commit comments