@@ -339,46 +339,46 @@ export default {
339339 <transition-group name =" fade" tag =" tbody" >
340340
341341 <!-- New UI Design -->
342- <!-- <tr v-for="(item) in transactionsList" :key="item.id">-->
343- <!-- <td :class="[getTable1Td(item.response_type)]">-->
344- <!-- {{ item.id }}-->
345- <!-- </td>-->
346- <!-- <td :class="[getTableTd(item.response_type)]">-->
347- <!-- {{ item.assetId }}-->
348- <!-- </td>-->
349- <!-- <td :class="[getTableTd(item.response_type)]">-->
350- <!-- {{ item.message }}-->
351- <!-- </td>-->
352- <!-- <td :class="[getTableTd(item.response_type)]">-->
353- <!-- <button v-if="item.response_type === 'Verify'" class="btn btn-secondary"-->
354- <!-- style="min-width: 66px;" @click="forceAsset(item)">-->
355- <!-- <span v-if="item.isForcing" class="spinner-border spinner-border-sm"></span>-->
356- <!-- <span v-else>Force</span>-->
357- <!-- </button>-->
358- <!-- </td>-->
359- <!-- </tr>-->
360-
361-
362- <tr v-for =" (item, index) in transactionsList" :key =" item.id" >
363- <td :style =" { backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }" >
342+ <tr v-for =" (item) in transactionsList" :key =" item.id" >
343+ <td :class =" [getTable1Td(item.response_type)]" >
364344 {{ item.id }}
365345 </td >
366- <td :style = " { backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' } " >
346+ <td :class = " [getTableTd(item.response_type)] " >
367347 {{ item.assetId }}
368348 </td >
369- <td :style =" { backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }" >
370- <div :class =" ['alert-warning', getStatusClass(item.response_type)]" >
349+ <td :class =" [getTableTd(item.response_type)]" >
371350 {{ item.message }}
372- </div >
373351 </td >
374- <td :style = " { backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' } " >
352+ <td :class = " [getTableTd(item.response_type)] " >
375353 <button v-if =" item.response_type === 'Verify'" class =" btn btn-secondary"
376354 style =" min-width : 66px ;" @click =" forceAsset(item)" >
377355 <span v-if =" item.isForcing" class =" spinner-border spinner-border-sm" ></span >
378356 <span v-else >Force</span >
379357 </button >
380358 </td >
381359 </tr >
360+
361+ <!-- Old UI Design -->
362+ <!-- <tr v-for="(item, index) in transactionsList" :key="item.id">-->
363+ <!-- <td :style="{ backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }">-->
364+ <!-- {{ item.id }}-->
365+ <!-- </td>-->
366+ <!-- <td :style="{ backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }">-->
367+ <!-- {{ item.assetId }}-->
368+ <!-- </td>-->
369+ <!-- <td :style="{ backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }">-->
370+ <!-- <div :class="['alert-warning', getStatusClass(item.response_type)]">-->
371+ <!-- {{ item.message }}-->
372+ <!-- </div>-->
373+ <!-- </td>-->
374+ <!-- <td :style="{ backgroundColor: index === 0 ? 'rgba(07, 59, 76, 0.05)' : 'transparent' }">-->
375+ <!-- <button v-if="item.response_type === 'Verify'" class="btn btn-secondary"-->
376+ <!-- style="min-width: 66px;" @click="forceAsset(item)">-->
377+ <!-- <span v-if="item.isForcing" class="spinner-border spinner-border-sm"></span>-->
378+ <!-- <span v-else>Force</span>-->
379+ <!-- </button>-->
380+ <!-- </td>-->
381+ <!-- </tr>-->
382382 </transition-group >
383383 </table >
384384
0 commit comments