File tree Expand file tree Collapse file tree 4 files changed +13
-17
lines changed
Expand file tree Collapse file tree 4 files changed +13
-17
lines changed Original file line number Diff line number Diff line change 88 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
99 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
1010 <link rel="manifest" href="/site.webmanifest"> -->
11-
12- <!-- Patron Font from OnlineWebFonts -->
13- < link href ="https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron " rel ="stylesheet " type ="text/css "/>
14-
15- <!-- Exodar Outline Font -->
16- < style >
17- @font-face {
18- font-family : 'ExodarOutline' ;
19- src : url ('/fonts/Exodar-Outline.ttf' ) format ('truetype' );
20- font-weight : normal;
21- font-style : normal;
22- }
23- </ style >
2411
2512 < title > Prompt Execution: Cognitive Robotic Process Automation</ title >
2613 </ head >
Original file line number Diff line number Diff line change 1818
1919<style scoped>
2020
21+ /* Font imports for logo SVGs */
22+ @import url (' https://db.onlinewebfonts.com/c/3bc7046035df293d6486e481022b043e?family=Patron' );
23+
24+ @font-face {
25+ font-family : ' ExodarOutline' ;
26+ src : url (' /fonts/Exodar-Outline.ttf' ) format (' truetype' );
27+ font-weight : normal ;
28+ font-style : normal ;
29+ }
30+
2131.logo-wrapper {
2232 display : flex ;
2333 justify-content : center ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ app.config.unwrapInjectedRef = true
1919*/
2020
2121// Set up Pinia store before mounting
22- const piniaSocketStore = useSocketStoreWithOut ( app ) ;
22+ useSocketStoreWithOut ( app ) ;
2323
2424app . use ( VueCookieNext ) ;
2525
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ import { setupStore } from "@/store/pinia/store";
55import { SocketStore } from "@/store/pinia/typeOfSocketStore" ;
66import { emitter } from "@/eventBus" ;
77
8- export const useSocketStore = defineStore ( {
9- id : "socket" ,
8+ export const useSocketStore = defineStore ( "socket" , {
109 state : ( ) : SocketStore => ( {
1110 // 连接状态
1211 isConnected : false ,
@@ -46,7 +45,7 @@ export const useSocketStore = defineStore({
4645 // Check if there are pending outgoing messages
4746 if ( this . outgoingMessages . length > 0 ) {
4847 // Loop through the outgoing messages and send them
49- this . outgoingMessages . forEach ( ( message , index ) => {
48+ this . outgoingMessages . forEach ( ( _message , index ) => {
5049 // Send the message through the WebSocket
5150 // TODO: Get app reference properly for WebSocket
5251 // app.config.globalProperties.$socket.sendObj({
You can’t perform that action at this time.
0 commit comments