Skip to content

Commit

Permalink
cammon
Browse files Browse the repository at this point in the history
  • Loading branch information
Pakillo committed Jan 30, 2025
1 parent 9542713 commit 02a8c74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/miembros_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ create_profile_qmd <- function(form.table, row){

icons <- " "

if(!is.na(social)){icons <- paste0(icons, at.icon,"\t<", social, ">\t\t\n")}
if(!is.na(github)) {icons <- paste0(icons, gh.icon,"\t<", github , ">\t\t\n")}
if(!is.na(web)) {icons <- paste0(icons, web.icon,"\t<", web , ">\t\t\n")}
if (!is.null(social) & !is.na(social)) {icons <- paste0(icons, at.icon,"\t<", social, ">\t\t\n")}
if (!is.null(github) & !is.na(github)) {icons <- paste0(icons, gh.icon,"\t<", github , ">\t\t\n")}
if (!is.null(web) & !is.na(web)) {icons <- paste0(icons, web.icon,"\t<", web , ">\t\t\n")}

if(is.na(github)){
if (is.na(github)){
if(!file.exists("images/blank.png")){
png("images/blank.png", 100,100,res = 100, units = "mm")
plot.new()
Expand Down

0 comments on commit 02a8c74

Please sign in to comment.