UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Verified Commit a02d8ccb authored by Raj Manandhar's avatar Raj Manandhar
Browse files

[BULL-2081] Delete unused props in ServicesSummary

parent 2edb2814
Branches BULL-2081
No related tags found
1 merge request!250[BULL-2081] Delete unused props in ServicesSummary
...@@ -3,7 +3,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp'; ...@@ -3,7 +3,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp';
<div class="services-summary"> <div class="services-summary">
<v-container fluid> <v-container fluid>
<v-layout row wrap justify-center name="services-summary"> <v-layout row wrap justify-center name="services-summary">
<v-flex lg2 md3 sm6 xs12 v-if="!ignoreIronBank"> <v-flex lg2 md3 sm6 xs12>
<LogoCard <LogoCard
:logoSource="ibLogo" :logoSource="ibLogo"
class="serviceHeight" class="serviceHeight"
...@@ -12,7 +12,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp'; ...@@ -12,7 +12,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp';
data-cy="ib" data-cy="ib"
/> />
</v-flex> </v-flex>
<v-flex lg2 md3 sm6 xs12 v-if="!ignoreBigBang"> <v-flex lg2 md3 sm6 xs12>
<LogoCard <LogoCard
:logoSource="bbLogo" :logoSource="bbLogo"
class="serviceHeight" class="serviceHeight"
...@@ -21,7 +21,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp'; ...@@ -21,7 +21,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp';
data-cy="bb" data-cy="bb"
/> />
</v-flex> </v-flex>
<v-flex lg2 md3 sm6 xs12 v-if="!ignorePartyBus"> <v-flex lg2 md3 sm6 xs12>
<LogoCard <LogoCard
:logoSource="pbLogo" :logoSource="pbLogo"
class="serviceHeight" class="serviceHeight"
...@@ -30,7 +30,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp'; ...@@ -30,7 +30,7 @@ import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp';
data-cy="pb" data-cy="pb"
/> />
</v-flex> </v-flex>
<v-flex lg2 md3 sm6 xs12 v-if="!ignoreCNAP"> <v-flex lg2 md3 sm6 xs12>
<LogoCard <LogoCard
:logoSource="cnapLogo" :logoSource="cnapLogo"
:logoMaxWidth="100" :logoMaxWidth="100"
...@@ -66,28 +66,6 @@ export default { ...@@ -66,28 +66,6 @@ export default {
components: { components: {
LogoCard, LogoCard,
}, },
props: {
ignoreIronBank: {
type: Boolean,
default: false,
},
ignoreBigBang: {
type: Boolean,
default: false,
},
ignorePartyBus: {
type: Boolean,
default: false,
},
ignoreCNAP: {
type: Boolean,
default: false,
},
ignoreCyberSec: {
type: Boolean,
default: false,
},
},
data() { data() {
return { return {
ibLogo: IBLogo, ibLogo: IBLogo,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment