File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 179179 </ div >
180180 </ form >
181181</ div >
182- < div class ="px-4 mt-10 sm:mt-14 md:mt-24 max-w-screen-2xl mx-auto ">
182+ < div id =" utility-results-view " class ="px-4 mt-10 sm:mt-14 md:mt-24 max-w-screen-2xl mx-auto hidden ">
183183 < div class ="col-span-2 flex justify-between items-center py-1 ">
184184 < p id ="document-price " class ="text-gray-600 text-sm/6 "> </ p >
185185 < div class ="flex items-center gap-2 ">
Original file line number Diff line number Diff line change @@ -29,6 +29,16 @@ const defaultTableRowStr = `
2929 >
3030 lindsay.walton@example.com
3131 </td>
32+ <td
33+ class="task-prompt-tokens whitespace-nowrap px-3 py-4 text-sm text-gray-500"
34+ >
35+ 10
36+ </td>
37+ <td
38+ class="task-completion-tokens whitespace-nowrap px-3 py-4 text-sm text-gray-500"
39+ >
40+ 10
41+ </td>
3242 <td
3343 class="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-0"
3444 >
@@ -87,6 +97,9 @@ const displayTask = (task) => {
8797 view : "FitH" ,
8898 } ,
8999 } ) ;
100+
101+ const utilityResultsView = document . getElementById ( "utility-results-view" ) ;
102+ utilityResultsView . classList . remove ( "hidden" ) ;
90103 const resultContainer = document . getElementById ( "result-container" ) ;
91104 resultContainer . classList . add ( ...[ "border" , "border-gray-900" ] ) ;
92105
You can’t perform that action at this time.
0 commit comments