Skip to content

Commit

Permalink
Merge pull request #4 from sergeByishimo/develop
Browse files Browse the repository at this point in the history
fix: Linkedin Connector - Meeds-io/MIPs#141
  • Loading branch information
plamarque authored Sep 18, 2024
2 parents da01f85 + 11c5c8f commit 22ba390
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions gamification-linkedin-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<!-- <configuration>-->
<!-- <outputDirectory>/Users/serge/Downloads/meeds-community-7.0.x-meed-SNAPSHOT/lib</outputDirectory>-->
<!-- </configuration>-->
</plugin>
</plugins>
</build>
Expand Down
1 change: 0 additions & 1 deletion gamification-linkedin-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
<artifactId>maven-war-plugin</artifactId>
<configuration>
<packagingExcludes>**/*.less,**/*.vue,css/lib/*,vue-app/**,js/mock/**/*,**-dev.*</packagingExcludes>
<!-- <outputDirectory>/Users/serge/Downloads/meeds-community-7.0.x-meed-SNAPSHOT/webapps</outputDirectory>-->
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,10 @@ export default {
this.displayNotificationAlert(error.message, 'error');
this.editAccessToken();
})
.finally(() => this.isFetchingProjects = false);

this.stepper = 3;
.finally(() => {
this.isFetchingProjects = false;
this.stepper = 3;
});
}
}
};
Expand Down

0 comments on commit 22ba390

Please sign in to comment.