code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/Source/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspectorViewModel.js b/Source/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspectorViewModel.js @@ -1127,7 +1127,7 @@ import knockout from '../../ThirdParty/knockout.js';
var length = settings.length;
for (var i = 0; i < length; ++i) {
var setting = setti... | 8 |
diff --git a/articles/quickstart/native/ionic3/download.md b/articles/quickstart/native/ionic3/download.md @@ -10,9 +10,7 @@ com.auth0.ionic://${account.namespace}/cordova/com.auth0.ionic/callback
http://localhost:8080
```
3) Ensure that [Ionic 3](https://ionicframework.com/docs/intro/installation/) and [Cordova](https... | 7 |
diff --git a/vaadin-grid-styles.html b/vaadin-grid-styles.html @@ -19,6 +19,7 @@ This program is available under Apache License Version 2.0, available at https:/
display: block;
animation: 1ms vaadin-grid-appear;
height: 400px;
+ transform: translateZ(0);
}
#scroller {
| 12 |
diff --git a/src/renderer/lib/state.js b/src/renderer/lib/state.js @@ -119,7 +119,7 @@ function setupStateSaved () {
downloadPath: config.DEFAULT_DOWNLOAD_PATH,
isFileHandler: false,
openExternalPlayer: false,
- externalPlayerPath: null,
+ externalPlayerPath: '',
startup: false,
soundNotifications: true,
autoAddTorrent... | 12 |
diff --git a/client/components/rules/actions/cardActions.js b/client/components/rules/actions/cardActions.js @@ -164,6 +164,7 @@ BlazeComponent.extendComponent({
const boardId = Session.get('currentBoard');
const actionId = Actions.insert({
actionType: 'removeMember',
+ // deepcode ignore NoHardcodedCredentials: it's n... | 1 |
diff --git a/lib/resize.js b/lib/resize.js @@ -253,6 +253,7 @@ function ignoreAspectRatio () {
* Do not enlarge the output image if the input image width *or* height are already less than the required dimensions.
* This is equivalent to GraphicsMagick's `>` geometry option:
* "*change the dimensions of the image only i... | 0 |
diff --git a/grails-app/services/streama/TheMovieDbService.groovy b/grails-app/services/streama/TheMovieDbService.groovy @@ -146,18 +146,22 @@ class TheMovieDbService {
def requestUrl = BASE_URL + '/search/' + type + '?query=' + query + '&api_key=' + API_KEY
- URL url = new URL(requestUrl)
- HttpURLConnection conn = ur... | 7 |
diff --git a/src/events/http/HttpServer.js b/src/events/http/HttpServer.js @@ -235,6 +235,11 @@ export default class HttpServer {
const authSchemeName = `scheme-${authKey}`
const authStrategyName = `strategy-${authKey}` // set strategy name for the route config
+ // TEMP options.location, for compatibility with serverl... | 0 |
diff --git a/src/components/api-request.js b/src/components/api-request.js @@ -549,7 +549,7 @@ export default class ApiRequest extends LitElement {
</div>
<div class="param-type">${paramSchema.type}</div>
</td>
- <td style="${fieldType === 'object' ? 'width:100%; padding:0;' : 'width:160px;'} min-width:100px;">
+ <td s... | 7 |
diff --git a/test/functional/specs/Identity/C2581.js b/test/functional/specs/Identity/C2581.js import { t } from "testcafe";
import createFixture from "../../helpers/createFixture";
-import SequentialHook from "../../helpers/requestHooks/sequentialHook";
import cookies from "../../helpers/cookies";
import {
compose,
@@... | 2 |
diff --git a/lib/pageHandler.js b/lib/pageHandler.js const { createJsDialogEventName } = require('./util');
const {handleUrlRedirection} = require('./helper');
+const nodeURL = require('url');
let page, xhrEvent, logEvent, framePromises, frameNavigationPromise;
const setPage = async (pg, event, eventLogger, domContentC... | 9 |
diff --git a/src/config.js b/src/config.js @@ -19,7 +19,8 @@ export const DEV_WS_API = 'wss://dev.franzinfra.com';
export const LIVE_WS_API = 'wss://api.franzinfra.com';
export const LOCAL_API_WEBSITE = 'http://localhost:3333';
-export const DEV_API_WEBSITE = 'https://meetfranz.com';
+// export const DEV_API_WEBSITE = ... | 14 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,12 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.28.2] -- 2017-06-21
+
+### Fixed
+- Fix IE rendering error (`node.children` doesn't work on SVG nodes in IE) [#1803]
+
+
## [1.28.1] ... | 3 |
diff --git a/lib/services/doctor-service.ts b/lib/services/doctor-service.ts @@ -116,6 +116,16 @@ class DoctorService implements IDoctorService {
}
private printInfosCore(infos: NativeScriptDoctor.IInfo[]): void {
+ if (!helpers.isInteractive()) {
+ infos.map(info => {
+ let message = info.message;
+ if (info.type === ... | 9 |
diff --git a/website/js/admin.vue b/website/js/admin.vue @@ -145,6 +145,13 @@ module.exports={
icon:"info",
href:"#/connect"
},
+ {
+ title:"Genesys Cloud",
+ id:"genesys",
+ subTitle:"Instructions for integrating with Genesys Cloud",
+ icon:"info",
+ href:"#/genesys"
+ },
{
title:"Lambda Hooks",
id:"hooks",
| 3 |
diff --git a/generators/server/templates/src/main/java/package/config/SecurityConfiguration.java.ejs b/generators/server/templates/src/main/java/package/config/SecurityConfiguration.java.ejs @@ -119,14 +119,11 @@ public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Value("${spring.security.oauth2.... | 2 |
diff --git a/activities/DollarStreet.activity/js/place.js b/activities/DollarStreet.activity/js/place.js @@ -7,7 +7,7 @@ var StreetPlace = {
<div class="place-padding">
<div v-bind:class="containerClass" @click="onPlaceClicked">
<img v-bind:src="image" @load="loaded" @error="error" class="place-image" v-bind:style="{vi... | 9 |
diff --git a/token-metadata/0xe6410569602124506658Ff992F258616Ea2D4A3D/metadata.json b/token-metadata/0xe6410569602124506658Ff992F258616Ea2D4A3D/metadata.json "symbol": "KATANA",
"address": "0xe6410569602124506658Ff992F258616Ea2D4A3D",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIE... | 3 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.50.0",
+ "version": "0.51.0",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/changelog/60_UNRELEASED_2020-xx-xx.md b/changelog/60_UNRELEASED_2020-xx-xx.md @@ -69,6 +69,8 @@ _- (Because the stock quantity unit is now the base for everything, it cannot be
### Recipe improvements/fixes
- It's now possible to print recipes (button next to the recipe title) (thanks @zsarnett)
+- Changed... | 0 |
diff --git a/packages/node_modules/@node-red/runtime/lib/flows/Flow.js b/packages/node_modules/@node-red/runtime/lib/flows/Flow.js @@ -376,6 +376,8 @@ class Flow {
} else if (this.activeNodes[id]) {
// TEMP: this is a subflow internal node within this flow
return this.activeNodes[id];
+ } else if (this.subflowInstanceN... | 11 |
diff --git a/packages/wast-parser/src/tokenizer.js b/packages/wast-parser/src/tokenizer.js @@ -361,7 +361,8 @@ function tokenize(input: string) {
regexToState(/\./, DEC_FRAC),
]),
DEC_FRAC: combineTransitions([
- regexToState(/[0-9]/, DEC_FRAC),
+ regexToState(/[0-9]/, DEC_FRAC, 1, true),
+ regexToState(/e|E/, DEC_SIGN... | 1 |
diff --git a/lib/document.js b/lib/document.js @@ -1154,14 +1154,15 @@ Document.prototype.$set = function $set(path, val, type, options) {
}
}
- // Ensure all properties are in correct order by deleting and recreating every property.
- for (const key of Object.keys(this.$__schema.tree)) {
- if (this._doc.hasOwnProperty... | 7 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/field/material-range/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/field/material-range/template.vue :name="schema.inputName"
:required="schema.required"
:step="schema.step"/>
- <div class="rail" @click="value = 0"></div>
<div v-if="isBla... | 12 |
diff --git a/plugins/styled-bars/back.js b/plugins/styled-bars/back.js @@ -11,7 +11,7 @@ mainMenuTemplate = function (winHook) {
//get template
let template = originTemplate(winHook);
//fix checkbox and roles
- fixCheck(template);
+ fixMenu(template);
//return as normal
return template;
}
@@ -52,12 +52,12 @@ function s... | 10 |
diff --git a/data.js b/data.js @@ -3996,6 +3996,14 @@ module.exports = [
url: "https://github.com/dciccale/parsy",
source: "https://raw.githubusercontent.com/dciccale/parsy/master/lib/parsy.js"
},
+ {
+ name: "Talker.js",
+ github: "secondstreet/talker.js",
+ tags: ["events", "window.postMessage", "iframe", "promise", ... | 0 |
diff --git a/packages/config/src/bin/main.js b/packages/config/src/bin/main.js @@ -12,9 +12,8 @@ const { parseFlags } = require('./flags')
// CLI entry point
const runCli = async function() {
- const { stable, ...flags } = parseFlags()
-
try {
+ const { stable, ...flags } = parseFlags()
const result = await resolveConf... | 7 |
diff --git a/src/server/modules/post/sql.js b/src/server/modules/post/sql.js @@ -39,13 +39,13 @@ export default class Post {
getTotal() {
return knex('post')
- .count('id as count')
+ .countDistinct('id as count')
.first();
}
getNextPageFlag(id) {
return knex('post')
- .count('id as count')
+ .countDistinct('id as coun... | 4 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/notifications.js b/packages/node_modules/@node-red/editor-client/src/js/ui/notifications.js @@ -45,6 +45,22 @@ RED.notifications = (function() {
var persistentNotifications = {};
+ var shade = (function() {
+ var shadeUsers = 0;
+ return {
+ show: fun... | 11 |
diff --git a/js/plugins/urlHandler.js b/js/plugins/urlHandler.js if (typeof window!=="undefined" &&
window.location &&
(window.location.origin=="https://localhost" ||
+ window.location.origin=="https://espruino.github.io" ||
window.location.origin=="https://www.espruino.com")) {
setTimeout(function() {
handle(window.lo... | 11 |
diff --git a/token-metadata/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/metadata.json b/token-metadata/0xea004e8FA3701B8E58E41b78D50996e0f7176CbD/metadata.json "symbol": "YFFC",
"address": "0xea004e8FA3701B8E58E41b78D50996e0f7176CbD",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/source/transfers/package.json b/source/transfers/package.json {
"name": "@airswap/transfers",
"version": "0.0.1",
- "description": "A registry to manage a variety of token transfers for the Swap Protocol",
+ "description": "A registry to manage token transfers on the AirSwap Network",
"license": "Apache-2.... | 3 |
diff --git a/js/core/bis_genericio.js b/js/core/bis_genericio.js @@ -635,7 +635,7 @@ let runDICOMConversion = (params,external=false) => {
* Runs the pipeline creation module through the file server
* @param {Object} params - Parameters for the pipeline module
*/
-let runPipelineModule = (params, savemanually = false) ... | 1 |
diff --git a/server/game/game.js b/server/game/game.js @@ -310,9 +310,9 @@ class Game extends EventEmitter {
}
transferHonor(winner, loser, honor) {
- var appliedHonor = Math.min(loser.faction.honor, honor);
- loser.faction.honor -= appliedHonor;
- winner.faction.honor += appliedHonor;
+ var appliedHonor = Math.min(los... | 2 |
diff --git a/demo/stores/component/component.js b/demo/stores/component/component.js @@ -10,8 +10,10 @@ import ComponentConstants from './../../constants/component';
import definitions from './../../definitions';
import patternDefinitions from './../../pattern-definitions';
+import { assign } from 'lodash';
+
const dat... | 14 |
diff --git a/src/kiri/tools.js b/src/kiri/tools.js @@ -115,11 +115,18 @@ api.event.on('mouse.hover', (ev) => {
let opos = track.pos;
obj.add(pmesh);
pmesh.position.x = point.x - opos.x + norm.x * 0.1;
+ if (track.indexed) {
+ let delta = track.delta;
+ let rad = track.indexRad;
+ let py = (point.y - delta.z + track.tzo... | 3 |
diff --git a/src/utils.js b/src/utils.js @@ -532,33 +532,16 @@ const utils = class utils {
return ret;
}
- static flatten(arr, result) {
- let i = 0;
- result = result || [];
- if (utils.isArray(arr)) {
- if (!utils.isArray(arr[0])) {
- result.push.apply(result, arr);
- } else {
- for (; i < arr.length; i++) {
- if (ut... | 4 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/contentview/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/contentview/template.vue v-on:dragover = "onDragOver"
v-on:drop = "onDrop"
v-bind:style = "`right: ${scrollbarWidth}px;`">
+ <div class="editview-... | 4 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/field/pathbrowser/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/field/pathbrowser/template.vue #L%
-->
<template>
- <div class="pathbrowser input-field">
+ <div class="field-wrap field-with-button">
<input
class="form-control"
- style="wi... | 7 |
diff --git a/src/EventEmitter.js b/src/EventEmitter.js @@ -17,7 +17,7 @@ class EventEmitter {
}
const observers = this.observers[event];
- for (const i = observers.length - 1; i >= 0; i--) {
+ for (let i = observers.length - 1; i >= 0; i--) {
const observer = observers[i];
if (observer === listener) {
observers.splice(... | 14 |
diff --git a/assets/js/modules/adsense/components/dashboard/DashboardTopEarningPagesWidget.js b/assets/js/modules/adsense/components/dashboard/DashboardTopEarningPagesWidget.js @@ -76,7 +76,7 @@ function DashboardTopEarningPagesWidget() {
}
if ( error ) {
- return getDataErrorComponent( 'adsense', error.message, false,... | 12 |
diff --git a/spec/widgets/auto-style/category.spec.js b/spec/widgets/auto-style/category.spec.js @@ -56,7 +56,6 @@ describe('src/widgets/auto-style/category', function () {
this.dataview.set('data', data);
this.layer.set('initialStyle', '#layer { marker-line-width: 0.5; marker-line-color: #fcfafa; marker-line-opacity: ... | 2 |
diff --git a/src/components/topic/StoryTable.js b/src/components/topic/StoryTable.js import React from 'react';
import { FormattedMessage, FormattedNumber, injectIntl } from 'react-intl';
import ArrowDropDownIcon from 'material-ui/svg-icons/navigation/arrow-drop-down';
-import Link from 'react-router/lib/Link';
import ... | 4 |
diff --git a/mediacontroller/yaps/core/storage.js b/mediacontroller/yaps/core/storage.js * @since v1
*/
const Minio = require('minio')
-const deasync = require('deasync')
+const sleep = require('syncho').sleep
class Storage {
@@ -23,13 +23,12 @@ class Storage {
// Get this out of here...
uploadFileSync(filename, filePa... | 14 |
diff --git a/components/core/ApplicationUserControls.js b/components/core/ApplicationUserControls.js @@ -181,7 +181,7 @@ export class ApplicationUserControlsPopup extends React.Component {
{
text: (
<div css={Styles.MOBILE_HIDDEN}>
- <DownloadExtensionButton full style={{ marginTop: "4px", marginBottom: "28px" }} />
+ ... | 2 |
diff --git a/app/views/admin/organizations/settings.html.erb b/app/views/admin/organizations/settings.html.erb </div>
</div>
- <div class="FormAccount-row">
- <div class="FormAccount-rowLabel">
- <label class="CDB-Text CDB-Size-medium is-semibold u-mainTextColor">Brand color</label>
- </div>
- <div class="FormAccount-r... | 2 |
diff --git a/templates/master/cfn/index.js b/templates/master/cfn/index.js @@ -39,7 +39,7 @@ module.exports={
"S3ObjectVersion":{"Fn::GetAtt":["CFNVersion","version"]}
},
"Handler": "index.handler",
- "MemorySize": "128",
+ "MemorySize": "3008",
"Role": {"Fn::GetAtt": ["CFNLambdaRole","Arn"]},
"Runtime": "nodejs8.10",
... | 3 |
diff --git a/src/components/Graph.jsx b/src/components/Graph.jsx @@ -7,6 +7,7 @@ import {
VictoryLine,
VictoryLabel,
VictoryAxis,
+ VictoryContainer,
} from 'victory';
import Symbol from './Symbol.jsx';
@@ -156,8 +157,13 @@ const Graph = props => {
y: props.yMax,
x: props.xMax,
}}
- // containerComponent={<VictoryVoron... | 1 |
diff --git a/bot/src/start.js b/bot/src/start.js @@ -116,6 +116,10 @@ function createBot() {
});
loadScheduleIntervals(monochrome);
+
+ process.on('uncaughtException', (err) => {
+ monochrome.getLogger().fatal({ event: 'UNCAUGHT_EXCEPTION', err });
+ });
});
return monochrome;
| 9 |
diff --git a/components/Frame/Popover/NavLink.js b/components/Frame/Popover/NavLink.js @@ -67,22 +67,17 @@ export const NavA = React.forwardRef(
transitionDelay: '33ms',
'@media (hover)': {
':hover': {
- color: colorScheme.getFormatCSSColor(formatColor)
+ color: colorScheme.getCSSColor(formatColor, 'format')
}
}
}),
[c... | 4 |
diff --git a/bake.html b/bake.html <head>
<title>Webaverse Model Baker</title>
<link rel=stylesheet type='text/css' href="index.css">
+ <style>
+ #textarea {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ width: 400px;
+ height: 200px;
+ }
+ #textarea.hidden {
+ display: none;
+ }
+ </style>
</head>
<body>
+<textarea... | 0 |
diff --git a/docs/introduction.md b/docs/introduction.md @@ -47,7 +47,7 @@ const nextState = produce(baseState, draftState => {
})
```
-The interesting thing about Immer is that the `baseState` will be untouched, but the `nextState` will a new immutable tree that reflects all changes made to `draftState` (and strucural... | 7 |
diff --git a/docs/blog/2018-03-06-to-2018-03-20.md b/docs/blog/2018-03-06-to-2018-03-20.md @@ -4,7 +4,7 @@ Sprint of March 6 - 20, 2018
Welcome to the first of a regular bi-monthly Voyager update! The Cosmos Voyager team plans out a number of new features and bug fixes to be accomplished every two weeks. This update wi... | 3 |
diff --git a/articles/libraries/auth0js/migration-guide.md b/articles/libraries/auth0js/migration-guide.md @@ -16,7 +16,7 @@ Take a look below for more information about changes and additions to auth0.js i
Initialization of auth0.js in your application will now use `auth0.WebAuth` instead of `Auth0`
```html
-<script sr... | 3 |
diff --git a/html/settings/_settings.scss b/html/settings/_settings.scss @@ -495,7 +495,7 @@ $sprk-border-radius: 5px !default;
/// Value for border-radius on the Alert component.
$sprk-alert-border-radius: 4px !default;
/// Value for border on the Alert component.
-$sprk-alert-border: 1px solid $sprk-gray !default;
+$... | 3 |
diff --git a/src/redux/studio-comment-actions.js b/src/redux/studio-comment-actions.js @@ -3,7 +3,7 @@ const eachLimit = require('async/eachLimit');
const api = require('../lib/api');
const log = require('../lib/log');
-const COMMENT_LIMIT = 25;
+const COMMENT_LIMIT = 20;
const {
addNewComment,
| 13 |
diff --git a/examples/README.md b/examples/README.md [code-splitting-specify-chunk-name](code-splitting-specify-chunk-name)
-[move-to-parent](move-to-parent)
-
-[multiple-commons-chunks](multiple-commons-chunks)
-
-[multiple-entry-points-commons-chunk-css-bundle](multiple-entry-points-commons-chunk-css-bundle)
-
[named... | 2 |
diff --git a/.github/workflows/actions/android-pre-build/action.yml b/.github/workflows/actions/android-pre-build/action.yml @@ -11,7 +11,6 @@ runs:
- uses: actions/checkout@v2
- name: Git branch name
id: git-branch-name
- shell: bash
uses: EthanSK/git-branch-name-action@v1
- name: Detect and set target branch
run: |
@... | 0 |
diff --git a/components/bases-locales/validator/report/summary/issues-sumup.js b/components/bases-locales/validator/report/summary/issues-sumup.js @@ -7,10 +7,6 @@ import theme from '@/styles/theme'
import IssueRows from './issue-rows'
-const isFloatNumber = value => {
- return value % 1 !== 0
-}
-
function IssuesSumup... | 14 |
diff --git a/src/pages/settings/Profile/LoginField.js b/src/pages/settings/Profile/LoginField.js @@ -101,9 +101,10 @@ class LoginField extends Component {
/>
</View>
) : (
- <View style={[styles.flexRow, styles.justifyContentBetween, styles.alignItemsCenter, styles.pt]}>
+ <View style={[styles.mt2]}>
<Text style={[styl... | 7 |
diff --git a/lib/apollo/apolloLink.js b/lib/apollo/apolloLink.js -import { ApolloLink } from '@apollo/client'
+import { ApolloLink, HttpLink } from '@apollo/client'
import { WebSocketLink } from '@apollo/client/link/ws'
import { API_URL, API_WS_URL, API_AUTHORIZATION_HEADER } from '../constants'
@@ -7,7 +7,6 @@ import ... | 14 |
diff --git a/plugins/identity/app/controllers/identity/projects_controller.rb b/plugins/identity/app/controllers/identity/projects_controller.rb @@ -174,7 +174,7 @@ module Identity
end
def update_cost_control_wizard_status
- billing_data = service_user.domain_admin_service(:cost_control).find_project_masterdata(@scoped... | 8 |
diff --git a/sirepo/package_data/template/opal/examples/lcls-gun.json b/sirepo/package_data/template/opal/examples/lcls-gun.json "interpl": "LINEAR",
"itsolver": "CG",
"maxiters": 100,
- "mt": 32,
+ "mt": 14,
"mx": 8,
"my": 8,
"name": "FS_SC",
"y2": "#varepsilon y",
"y3": "#varepsilon z"
},
- "rpnCache": {
- "(Edes + E... | 1 |
diff --git a/src/mixins/linkConfig.js b/src/mixins/linkConfig.js @@ -44,7 +44,6 @@ export default {
line: { stroke: '#5096db' },
'.joint-highlight-stroke': { 'display': 'none' },
});
- this.shapeView.showTools();
} else {
resetShapeColor(this.shape);
this.shapeView.hideTools();
| 2 |
diff --git a/.github/workflows/compressed-size.yml b/.github/workflows/compressed-size.yml @@ -53,4 +53,4 @@ jobs:
pattern: './dist/assets/**/*.{css,js}'
# The sub-match below will be replaced by asterisks.
# The length of 20 corresponds to webpack's `output.hashDigestLength`.
- strip-hash: "\\-([a-f0-9]{20})\\.(?:css|... | 2 |
diff --git a/lib/assets/core/test/spec/cartodb3/editor/editor-pane.spec.js b/lib/assets/core/test/spec/cartodb3/editor/editor-pane.spec.js @@ -246,36 +246,6 @@ describe('editor/editor-pane', function () {
});
});
- describe('add button', function () {
- beforeEach(function () {
- this.widgetDefModel = new WidgetDefinit... | 2 |
diff --git a/lib/modules/apostrophe-pieces-pages/index.js b/lib/modules/apostrophe-pieces-pages/index.js @@ -267,7 +267,12 @@ module.exports = {
return callback(null);
}
var cursor = self.indexCursor(req);
- return cursor.previous(doc).toObject(function(err, _previous) {
+ return cursor.previous(doc)
+ .applyFilters(
+... | 11 |
diff --git a/docs/README.md b/docs/README.md @@ -37,7 +37,7 @@ You can also watch some popular mermaid tutorials on the [mermaid Overview](./n0
## [New Mermaid Live-Editor Beta](https://mermaid-js.github.io/docs/mermaid-live-editor-beta/#/edit/eyJjb2RlIjoiJSV7aW5pdDoge1widGhlbWVcIjogXCJmb3Jlc3RcIiwgXCJsb2dMZXZlbFwiOiAx... | 1 |
diff --git a/sdk/src/classes.js b/sdk/src/classes.js @@ -23,7 +23,13 @@ F2.extend('', {
* @method init
* @optional
*/
- init:function() {}
+ init:function() {},
+ /**
+ * An optional destroy function that will automatically be called when
+ * F2.{{#crossLink "F2\removeApp"}}{{/crossLink}} and subsequently
+ * the {{#cr... | 3 |
diff --git a/backend/routes/domains.js b/backend/routes/domains.js @@ -6,6 +6,7 @@ const { hasNS, verifyDNS } = require('../utils/dns')
const { decryptConfig } = require('../utils/encryptedConfig')
const { Network, ShopDeployment, ShopDomain } = require('../models')
const { ShopDomainStatuses } = require('../utils/enum... | 12 |
diff --git a/plugins/dnswl.js b/plugins/dnswl.js @@ -26,7 +26,7 @@ exports.load_dnswl_ini = function () {
if (plugin.cfg.main.stats_redis_host) {
plugin.redis_host = plugin.cfg.main.stats_redis_host;
- plugin.logdebug('set stats redis host to: ' + plugin.redis_host);
+ plugin.logdebug(`set stats redis host to: ${plugin... | 14 |
diff --git a/config/redirect-urls.json b/config/redirect-urls.json {
"from": "/libraries/lock-ios/use-your-own-ui",
"to": "/libraries/lock-ios/v1/use-your-own-uis"
+ },
+ {
+ "from": "/quickstart/native/chrome-extension",
+ "to": "/quickstart/native/chrome"
}
-
]
| 0 |
diff --git a/src/traces/scattergl/index.js b/src/traces/scattergl/index.js @@ -595,15 +595,27 @@ ScatterGl.scene = function getScene(container, subplot) {
// make sure canvas is clear
scene.clear = function clear() {
- var vpSize = layout._size, width = layout.width, height = layout.height;
- var vp = [
+ var vpSize = ... | 9 |
diff --git a/src/components/ProductItem/ProductItem.js b/src/components/ProductItem/ProductItem.js @@ -67,7 +67,6 @@ class ProductItem extends Component {
renderProductImage() {
const {
classes: { img, imgLoading, loadingIcon },
- product: { description },
theme: { breakpoints: { values } }
} = this.props;
const { hasI... | 12 |
diff --git a/scss/form/_input.scss b/scss/form/_input.scss @@ -32,15 +32,15 @@ $siimple-input-radius: $siimple-default-border-radius;
outline: 0px;
background-color: siimple-default-color("light");
vertical-align: top;
-
+ //Fluid input
&--fluid {
- width: 100%;
+ width: calc(100% - 2*#{$siimple-input-padding});
}
-
+ ... | 1 |
diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml @@ -54,3 +54,11 @@ jobs:
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--tag "${{ secrets.DOCKER_HUB_USER }}/sphinx-relay:${{ env.RELEASE_TAG }}" \
--output "type=registry" ./
+ - name: Run Docker buildx with latest tag
+ run: |
+ ... | 0 |
diff --git a/lib/carto/tracking/services/pubsub_tracker.rb b/lib/carto/tracking/services/pubsub_tracker.rb @@ -43,9 +43,7 @@ class PubSubTracker
result = topic.publish(event, attributes)
- if result
- CartoDB::Logger.info(message: "PubSubTracker: event #{event} published to #{topic.name}")
- else
+ unless result
CartoD... | 2 |
diff --git a/packages/sling-web-component-form/src/component/Form.js b/packages/sling-web-component-form/src/component/Form.js @@ -90,13 +90,15 @@ export class Form extends withEventDispatch(HTMLElement) {
field.id;
}
- static async getFieldError(field) {
- if (isFunction(field.validation)) {
+ static async getFieldErr... | 11 |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -73,5 +73,6 @@ jobs:
- name: update release changelog
run: |
yarn update-release-changelog
+ git add semcore/ui/CHANGELOG.add
git commit -m "Automatically updated @semcore/ui changelog"
git push
| 0 |
diff --git a/bin/serverless.js b/bin/serverless.js 'use strict';
-const autocomplete = require('../lib/utils/autocomplete');
-const BbPromise = require('bluebird');
-const logError = require('../lib/classes/Error').logError;
-const uuid = require('uuid');
-const initializeErrorReporter = require('../lib/utils/sentry').... | 7 |
diff --git a/packages/imba/src/compiler/nodes.imba1 b/packages/imba/src/compiler/nodes.imba1 @@ -3851,7 +3851,8 @@ export class Func < Code
let name = @context.node.@className
if name and STACK.tsc
# console.log 'inext',@context.node.@className
- o.push('@this { this & ' + name.c + ' }')
+ # o.push('@this { this & ' + ... | 7 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.36.0",
+ "version": "0.36.1",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/README.md b/README.md @@ -130,7 +130,7 @@ equivalent to these of a direct one-to-one WebRTC call. This is what's unique to
Jitsi Meet in terms of security.
The [meet.jit.si](https://meet.jit.si) service is maintained by the Jitsi team
-at [Atlassian](https://atlassian.com).
+at [8x8](https://8x8.com).
## M... | 14 |
diff --git a/src/client/js/components/Admin/Notification/NotificationDeleteModal.jsx b/src/client/js/components/Admin/Notification/NotificationDeleteModal.jsx @@ -2,34 +2,32 @@ import React from 'react';
import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
-import Modal from 'react-boots... | 14 |
diff --git a/README.md b/README.md -Activity
-====
+# Activity
We are developing a tool for humanitarians to manage project activities and indicator results across their programs, including approval workflows and reporting and visualizations. Our goal is to help organizations answer common questions such as:
-* who are... | 3 |
diff --git a/src/traces/pie/plot.js b/src/traces/pie/plot.js @@ -334,7 +334,11 @@ module.exports = function plot(gd, cdpie) {
s.attr('data-notex', 1);
});
- titleText.text(trace.title.text)
+ var txt = fullLayout.metatext ?
+ Lib.templateString(trace.title.text, {metatext: fullLayout.metatext}) :
+ trace.title.text;
+
... | 0 |
diff --git a/src/containers/catalog/withCatalogItems.js b/src/containers/catalog/withCatalogItems.js import React from "react";
+import { inject, observer } from "mobx-react";
import { Query } from "react-apollo";
-import primaryShopIdQuery from "../common-gql/primaryShopId.gql";
import catalogItemsQuery from "./catalo... | 2 |
diff --git a/generators/server/prompts.js b/generators/server/prompts.js @@ -341,10 +341,6 @@ function askForServerSideOpts(meta) {
this.prodDatabaseType = 'cassandra';
this.enableHibernateCache = false;
}
- // Hazelcast is mandatory for Gateways, as it is used for rate limiting
- if (this.cacheProvider !== 'memcached'... | 2 |
diff --git a/src/pages/home/report/ReportActionItemFragment.js b/src/pages/home/report/ReportActionItemFragment.js @@ -117,6 +117,7 @@ const ReportActionItemFragment = (props) => {
}
return (
<Text
+ family="EMOJI_TEXT_FONT"
selectable={!canUseTouchScreen() || !props.isSmallScreenWidth}
style={[EmojiUtils.containsOnlyE... | 4 |
diff --git a/build/check.py b/build/check.py @@ -236,6 +236,7 @@ def check_eslint_disable(_):
for rule in disabled:
logging.error('%s:%d Rule %r still disabled at end of file',
rel_path, i + 1, rule)
+ has_error = True
return not has_error
| 1 |
diff --git a/tests/functional/jaws/pom.xml b/tests/functional/jaws/pom.xml <id>central</id>
<name>Maven Repository Switchboard</name>
<layout>default</layout>
- <url>http://repo1.maven.org/maven2</url>
+ <url>https://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<pluginRepository>
<id>c... | 12 |
diff --git a/tests/e2e/plugins/site-verification-api-mock.php b/tests/e2e/plugins/site-verification-api-mock.php @@ -29,6 +29,8 @@ add_action( 'rest_api_init', function () {
REST_Routes::REST_ROOT,
'modules/site-verification/data/verification',
array(
+ array(
+ 'methods' => WP_REST_Server::READABLE,
'callback' => func... | 3 |
diff --git a/src/js/controllers/tab-scan.controller.js b/src/js/controllers/tab-scan.controller.js @@ -25,6 +25,10 @@ angular
var qrPermissionResult = {
denied: 'PERMISSION_DENIED',
granted: 'PERMISSION_GRANTED',
+
+ // iOS
+ restricted: 'PERMISSION_RESTRICTED',
+ notDetermined: 'PERMISSION_NOT_DETERMINED'
};
var scann... | 9 |
diff --git a/lib/carto/dbdirect/certificate_manager.rb b/lib/carto/dbdirect/certificate_manager.rb @@ -20,15 +20,7 @@ end
module Carto
module Dbdirect
-
- SEP = '-----END CERTIFICATE-----'.freeze
-
- # TODO: this uses aws cli at the moment.
- # if having it installed in the hosts is not convenient we could
- # switch t... | 2 |
diff --git a/src/botPage/view/blockly/blocks/trade/components.js b/src/botPage/view/blockly/blocks/trade/components.js @@ -85,7 +85,7 @@ export const barrierOffset = block => {
) {
const barrierValue = block.workspace.newBlock('math_number', 'BARRIERVALUE');
barrierOffsetList.setValue('+');
- barrierValue.setFieldValue... | 12 |
diff --git a/packages/idyll-cli/test/basic-project/test.js b/packages/idyll-cli/test/basic-project/test.js @@ -141,16 +141,18 @@ test('should include components configured in package.json', () => {
expect(Object.keys(output.components)).toContain('package-json-component-test');
})
-test('Idyll getComponents() gets all ... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -11,20 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Integration with Canvas Learning Management System (LMS) -- an early example implementation
- Tags to questions in Content Designer and ability to create reports in Kibana.
- I... | 3 |
diff --git a/token-metadata/0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E/metadata.json b/token-metadata/0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E/metadata.json "symbol": "PASTA",
"address": "0xE54f9E6Ab80ebc28515aF8b8233c1aeE6506a15E",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -62,7 +62,9 @@ final class Analytics extends Module implements Module_With_Screen, Module_With_
add_filter(
'option_' . self::OPTION,
function( $option ) {
- $option = (array) $option;
+ if ( ! is_array( $option ) ) {
+ $option = array();
+... | 4 |
diff --git a/lib/formatting.js b/lib/formatting.js @@ -761,7 +761,7 @@ const $to = {
return raw ? s : wrapText(safeText(s));
},
number: num => {
- if (isFinite(num)) {
+ if (Number.isFinite(num)) {
return num.toString();
}
// Converting NaN/+Infinity/-Infinity according to Postgres documentation:
| 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.